PHP
可变变量
$a='hello';
$$a = 'world';
echo "$a ${$a}"; //hello world