close

今天寫PHP需要在CLASS中使用全域的陣列,以往直接require進來就可以用,但是可能是class的關係讀不到,所以找了將陣列設成全域陣列的方法。如下:

 

Alright in my config.inc.php I got:

$db["username"]= "user123";

$db["password"]= "likeimleavingthisin";

$db["host"]= "localhost";

$db["name"]= "stats";

$db["prefix"]= "prefix";

 

and in my scripts.class.php I have

function login() {

global $db; // 要使用時須要將$db宣告成global之後就能使用了。

echo ">".$db["username"]."<";

return 0;

}

--

參考自 http://php.bigresource.com/Global-Array-NMsIlrQW.html

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 dizzy03 的頭像
    dizzy03

    碎碎念

    dizzy03 發表在 痞客邦 留言(0) 人氣()