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