注册 | 登录 |
地方论坛门户及新闻和人才网址大全

dedecms教程:织梦系统$GLOBALS定义文件在哪

时间:2021-07-21人气:-


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



上篇:dedecms教程:调用文章第一张图片(非缩略图)的实ded...

下篇:dedecms教程:DEDECMS网站数据快速迁移、数据库备...