为什么regex不会在CodeIgniter中传递参数?

时间:2011-05-24 00:48:10

标签: codeigniter codeigniter-url

$route['[0-9A-Za-z]'] = "editor/index/$1";

当我查看我的编辑器控制器时,在索引方法中,我没有通过参数。它只是说“1美元”

1 个答案:

答案 0 :(得分:0)

您可以尝试$route[ '(:any)' ] = "editor"

然后根据需要处理:

function index() {
    $id = $this->uri->segment( 3 ); // Or whatever segment you end up with.

    // Do something.
}