在Yii中从模板生成新的配置文件

时间:2014-10-09 10:32:15

标签: php yii console

我有配置模板文件:

  • build/template/config/main.php
  • build/template/config/params.php

这是protected/config配置文件的模板。

如何从模板文件生成新的配置文件?

我尝试清除缓存,但这不是我想要的。

1 个答案:

答案 0 :(得分:1)

您可以使用CMap::mergeArray()组合两个或更多配置文件。在您的protected / config / main.php中:

return CMap::mergeArray(
    require 'build/template/config/main.php'), 
    require 'build/template/config/params.php'), 
);