0

我的配置中有数组,我将其用于 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);

4

1 回答 1

1

使用$this->uri->segment(3);这将为您提供来自 URL 的第三个参数。有关更多信息,请阅读用户指南

http://ellislab.com/codeigniter/user-guide/libraries/uri.html

于 2012-08-02T15:03:42.967 回答