Zend Framework application.xml模块加载

时间:2010-11-18 11:04:51

标签: php xml zend-framework

我将配置从.ini重写为.xml,我有一个 我的模块有问题。当我的配置存储在.ini中 我写了resources.modules [] =
和zend在引导时加载我的所有模块和模型。
我如何在.xml中使用它?
现在我简单写一下

<resources>
  <modules></modules> 
</resources>

它不起作用。

1 个答案:

答案 0 :(得分:1)

尝试添加占位符。它对我有用。

<resources>
    <modules>
        <!-- Placeholder to ensure an array is created -->
        <placeholder />
    </modules>
</resources>