php global 的用法
阿新 • • 發佈:2019-02-01
變數分為全域性變數和區域性變數。學過C語言的童鞋都知道,全域性變數的作用域是整個整個檔案。在即使在函式內部也有效,但在php中,如果在函式中使用全域性變數,php會認為這個變數沒有定義。如果我們需要在函式內部使用這個全域性變數,這時我們就需要在函式內部,這個全域性變數前加關鍵字global。下面是自己寫的一個小demo。用來證明我上面說的
<?php
$str = "string";
function test()
{
if (isset($str))
{
echo "the string is defined";
}
else
{
echo "the string is undefined";
}
}
test();
?>
這是在瀏覽器中的執行結果:
<?php
$str = "string";
function test()
{
global $str;//上面的test函式中沒有這句話
if (isset($str))
{
echo "the string is defined";
}
else
{
echo "the string is undefined";
}
}
test();
?>
這是在瀏覽器中的執行結果: