function destroy_foo() {
global $foo;
// unset($foo);
echo $foo;
}
$foo = 'bar';
destroy_foo();
echo $foo;
输出:barbar
function destroy_foo() {
global $foo;
unset($foo);
}
$foo = 'bar';
destroy_foo();
echo $foo;
输出:bar
unset只是把引用关系给去掉了,不是去掉外面的值
那么如何销毁全局变量,往下看
function foo()
{
unset($GLOBALS['bar']);
}
$bar = "something";
foo();
echo $bar;
报错,因为已经被销毁全局变量