Heim  >  Artikel  >  Backend-Entwicklung  >  thinkphp 获取配置文件解决方法

thinkphp 获取配置文件解决方法

WBOY
WBOYOriginal
2016-06-13 13:15:221069Durchsuche

thinkphp 获取配置文件
默认的配置文件在conf文件夹下的config.php中,我现在在conf文件夹下还有个配置文件history_config.php 这个文件的配置写法也跟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 扩展配置》

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn