Home  >  Article  >  Backend Development  >  ThinkPHP多应用/项目配置技能(使用同一配置文件)-(十六)

ThinkPHP多应用/项目配置技能(使用同一配置文件)-(十六)

WBOY
WBOYOriginal
2016-06-13 12:12:571066browse

ThinkPHP多应用/项目配置技巧(使用同一配置文件)--(十六)

ThinkPHP多应用配置技巧(没有使用分组,这是通过入口文件产生的Home、Admin)----很实用!

比如:现在有Home、Admin应用
问题:前台后台使用数据库的时候,都得各自配置自己的config文件
需求:现在想HOME/Aamin都使用一个公共文件配置文件,统一修改好维护

步骤:

1--在项目根文件夹下(入口文件同级目录下),创建一个公共的config.php文件
-->这里写了配置文件前后台直接引入就行
return array(
//'配置项'=>'配置值'
'DB_PREFIX'=>'tp_',  //没有表前缀留空就行
'DB_DSN'=>'mysql://root:@localhost:3306/thinkphp',
);

?>


2--E:\wamp\www\thinkphp\Home\Conf\config.php 和 Admin下的
//将原来的配置文件改成$arr2,引入1建立的公共配置文件合并返回即可
//这个./是相对于入口文件的当前
$arr=include './config.php';  
$arr2=array(
//'配置项'=>'配置值'
);
return array_merge($arr,$arr2);

?>


Statement:
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