DedeCMS數(shù)據(jù)庫的信息是寫在data/common.inc.php,而系統(tǒng)連接數(shù)據(jù)庫時(shí)使用的有一個(gè)函數(shù)是:
function Init($pconnect=FALSE) {
$this->linkID = 0;
$this->dbHost = $GLOBALS['cfg_dbhost']; //$GLOBALS在哪把信息放入$GLOBALS的?
$this->dbUser = $GLOBALS['cfg_dbuser'];
$this->dbPwd = $GLOBALS['cfg_dbpwd'];
$this->dbName = $GLOBALS['cfg_dbname'];
$this->dbPrefix = $GLOBALS['cfg_dbprefix'];
$this->result["me"] = 0;
$this->Open($pconnect); }
它是在哪把信息放入$GLOBALS中的?
回復(fù):
$GLOBALS 是全局變量數(shù)組
凡是在函數(shù)和類以外定義的變量都在其中出現(xiàn)
比如 $GLOBALS['cfg_dbhost'] 就在 common.inc.php 中有 $cfg_dbhost = '~dbhost~';
當(dāng)加載 common.inc.php 后就有 $GLOBALS['cfg_dbhost']
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: dedecms系統(tǒng)$GLOBALS定義文件在哪