thinkphp 获取配置文件
默认的配置文件在conf文件夹下的config.php中,我现在在conf文件夹下还有个配置文件history_config.php 这个%本文来源gaodai#ma#com搞*代#码9网#搞gaodaima代码文件的配置写法也跟config.php一样 是 return array();
现在我想获取history_config.php中的值 要怎么写呢?
——解决方案——————–
$xxx = include_once(“Conf/history_config.php”);
——解决方案——————–
包含它,一样调用呗
——解决方案——————–
include_once(APP_PATH . “Conf/history_config.php”);
thinkphp 已经提供了加载扩展配置文件的功能
见开发手册之 《3.8 扩展配置》