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;
情報ありがとう!