Home > Backend Development > PHP Tutorial > thinkphp 获取配置文件解决方法

thinkphp 获取配置文件解决方法

WBOY
Release: 2016-06-13 13:15:22
Original
1151 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template