取消引用
当你 unset 一个引用,只是断开了变量名和变量内容之间的绑定。这并不意味着变量内容被销毁了。例如:
$a = 1;$b =& $a;unset ($a);?>
不会 unset $b,只是 $a。