0

構成に配列があり、それを foreach に取得します。問題なく動作しますが、モジュールからパラメーターを取得するにはどうすればよいですか。たとえば、パラメーター 1 を custom/custom/index にします。

返信ありがとうございます

$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

use$this->uri->segment(3);これにより、URL からの 3 番目のパラメーターが得られます。詳細については、ユーザーガイドをお読みください

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

于 2012-08-02T15:03:42.967 に答える