本文主要讲解《dedecms教程:织梦系统$GLOBALS定义文件在哪》的详细内容
DedeCMS数据库的信息是写在data/common.inc.php,而系统连接数据库时使用的有一个函数是:
functionInit($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']
本网刊登的文章均仅代表作者个人观点,并不代表本网立场。文中的论述和观点,敬请读者注意判断。
2021-02-08
2021-02-08
2021-02-08
2021-02-24
2021-02-24
2021-02-08
2021-02-08
2021-02-08