織夢DedeCMS數(shù)據(jù)庫的信息是寫在data/common.inc.php文件中的,而織夢在連接數(shù)據(jù)庫時(shí)使用的有一個(gè)函數(shù)是:
01 |
function Init($pconnect=FALSE) { |
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); |
|
里面的$GLOBALS是織夢的全局變量數(shù)組,凡是在函數(shù)和類以外定義的變量都在其中出現(xiàn),比如$GLOBALS['cfg_dbhost']就在 common.inc.php中有$cfg_dbhost = '~dbhost~';
而當(dāng)文件加載common.inc.php文件后就有$GLOBALS['cfg_dbhost']了。