Maison  >  Article  >  développement back-end  >  thinkphp 获取配置文件解决方法

thinkphp 获取配置文件解决方法

WBOY
WBOYoriginal
2016-06-13 13:15:221069parcourir

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 扩展配置》

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn