量分為全域變數和局部變數。學過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(); ?>
這是在瀏覽器中的運行結果:
以上是php 中global關鍵字的使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!