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