程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> dedeCMS系統$GLOBALS定義文件在哪

dedeCMS系統$GLOBALS定義文件在哪

編輯:PHP綜合

dedeCMS數據庫的信息是寫在data/common.inc.php,而系統連接數據庫時使用的有一個函數是:
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中的?  

回復:

$GLOBALS 是全局變量數組
凡是在函數和類以外定義的變量都在其中出現
比如 $GLOBALS['cfg_dbhost'] 就在 common.inc.php 中有 $cfg_dbhost = '~dbhost~';
當加載 common.inc.php 後就有 $GLOBALS['cfg_dbhost']

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved