主頁 > 網(wǎng)站建設(shè) > 建站知識(shí) > 織夢DedeCMS全局變量$GLOBALS的定義文件分析

織夢DedeCMS全局變量$GLOBALS的定義文件分析

POST TIME:2021-05-25 00:21

織夢DedeCMS數(shù)據(jù)庫的信息是寫在data/common.inc.php文件中的,而織夢在連接數(shù)據(jù)庫時(shí)使用的有一個(gè)函數(shù)是:

01 functionInit($pconnect=FALSE) {
02 $this->linkID = 0;
03 $this->dbHost = $GLOBALS['cfg_dbhost'];
04 $this->dbUser = $GLOBALS['cfg_dbuser'];
05 $this->dbPwd = $GLOBALS['cfg_dbpwd'];
06 $this->dbName = $GLOBALS['cfg_dbname'];
07 $this->dbPrefix = $GLOBALS['cfg_dbprefix'];
08 $this->result["me"] = 0;
09 $this->Open($pconnect);
10 }

里面的$GLOBALS是織夢的全局變量數(shù)組,凡是在函數(shù)和類以外定義的變量都在其中出現(xiàn),比如$GLOBALS['cfg_dbhost']就在 common.inc.php中有$cfg_dbhost = '~dbhost~';

而當(dāng)文件加載common.inc.php文件后就有$GLOBALS['cfg_dbhost']了。




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266