php – 如何在字符串中使用函数?

前端之家收集整理的这篇文章主要介绍了php – 如何在字符串中使用函数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
'<a rel="nofollow" href="$1" class="bbc_link new_win" target="_blank">'

我想使用urlencode()函数

'<a rel="nofollow" href="urlencode($1)" class="bbc_link new_win" target="_blank">'

……但我不能用这个:

'<a rel="nofollow" href="'.urlencode($1).'" class="bbc_link new_win" target="_blank">'

…因为$1不是字符串中的变量;它是一个简单的免费论坛中的元变量.

它发送http://www.test.com/out.PHP?out=http://www.example.com

这个疯狂的黑客怎么样?
<?
$_ = 'urlencode';
echo "<a rel=\"nofollow\" href=\"{$_($1)}\" class=\"bbc_link new_win\" target=\"_blank\">";
原文链接:https://www.f2er.com/php/135624.html

猜你在找的PHP相关文章