<?php
$temp =  5;
unset($temp);
echo " temp = $temp\n";
?>输出
temp=
unset 函数是把变量的值清空了,还是把变量从内存中释放了?