php – $GLOBALS superglobal在传递给函数时被修改
作者:互联网
我在PHP中遇到了一些奇怪的行为:
function f($var) { // not using references
foreach ($var as $k => $v) {
unset($var[$k]); // shouldn't this unset from a copy?!
}
}
print '<pre>';
var_dump($GLOBALS); // array
f($GLOBALS);
var_dump($GLOBALS); // null?!
谁知道为什么会这样?
解决方法:
打印出它正在删除的内容并启用警告以查看what’s actually happening! =)
$GLOBALS包含GLOBALS.你取消它,它删除了实际的全局变量.如果这只是传递引用行为,您将得到一个空数组,而不是NULL.
标签:php,superglobals 来源: https://codeday.me/bug/20190625/1284439.html