标签:inf 原理 function nbsp span func php blog pre
function test() { echo "hello"; } echo "${@test()}"; echo "${@phpinfo()}"; // 原理: $a = ‘b‘; $b = ‘a‘; echo $$a;
<?php
$a = ‘hello‘;
$$a = "test";
echo "${$a}";
?> 这样输出test
<?php
$a = ‘hello‘;
$$a = "test";
echo "$$a";
?>这样输出hello;
标签:inf 原理 function nbsp span func php blog pre
原文地址:http://www.cnblogs.com/test404/p/6752774.html