加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > CMS系统 > 正文

dedecms系统$GLOBALS定义文件在哪

发布时间:2020-05-22 16:10:29 所属栏目:CMS系统 来源:互联网
导读:DedeCMS 数据库的信息是写在data/common.inc.php,而系统连接数据库时使用的有一个函数是: functionInit($pconnect=FALSE){ $this-linkID=0; $this-dbHost=$GLOBALS[cfg_dbhost];//$GLOBALS在哪把信息放入$GLOBALS的? $this-dbUser=$GLOBALS[cfg_dbuser];

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']

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读