我有配置模板文件:
build/template/config/main.php
,build/template/config/params.php
。这是protected/config
配置文件的模板。
如何从模板文件生成新的配置文件?
我尝试清除缓存,但这不是我想要的。
答案 0 :(得分:1)
您可以使用CMap::mergeArray()组合两个或更多配置文件。在您的protected / config / main.php中:
return CMap::mergeArray(
require 'build/template/config/main.php'),
require 'build/template/config/params.php'),
);