PHP中引用(变量和函数名前加&符号)的用法http://www.ityizhan.com/php-reference-usage/$a 5$b &$a$
PHP中引用(变量和函数名前加&符号)的用法
http://www.ityizhan.com/php-reference-usage/
$a = 5;$b = &$a;$b="world";echo $a; //world
PHP中引用(变量和函数名前加&符号)的用法
http://www.ityizhan.com/php-reference-usage/
$a = 5;$b = &$a;$b="world";echo $a; //world