我的配置中有数组,我将其用于 foreach。它工作正常,但我如何从任何模块获取参数。例如,我希望参数 1 为自定义/自定义/索引。
谢谢你的回复
$config['modules'] = array('calendar/calendar/index','randphoto/randphoto/index','feedback/feedback/index','survey/survey/index','custom/custom/index');
foreach ($this->config->item('modules') as $key) {
echo Modules::run($key);
}
如果我单独尝试,它可以正常工作,但我希望它在数组回显中Modules::run('custom/custom/index', 1);