register_globals 设置为“关闭”。
phpinfo():
本地值 = 关闭
主值 = 关闭
$var = "test";
function test()
{
var_dump($GLOBALS["var"]); // this prints "test"..
die;
}
test();
为什么我得到 $GLOBALS["var"] 的输出?
$test = "mytext";
echo $GLOBALS["test"]; // output: "mytext".. why?
die;
谢谢你告诉我这件事!