我在 CodeIgniter 中使用 HMVC 扩展。我有一个像这样的模块
moduleName
config
config.php
routes.php
controller
test.php
models
etc..
从test.php
我试图从上面的模块文件夹加载自定义配置项。但它不起作用。我像扩展我的课一样class Test extends MX_Controller {}
我尝试从模块文件夹之外的默认配置文件夹加载配置项its working
根据这篇文章,模块配置应该在模块初始化时加载。但它不起作用。
我在这里想念什么?