我在使用 codeigniter 段时遇到问题。
我正在寻找这样的东西,我的控制器在哪里contacts
,动作是list
:
localhost/index.php/contacts/list/limit/10/offset/100/orderBy/postalCode/search/john/
这样我可以混合我的参数,它们不必按照特定的顺序,或者我可以把它们放在一起,例如:
localhost/index.php/contacts/list/search/john/
我怎么得到这个,因为我看到它的方式,我只能请求这样一个片段:
$this->uri->segment(3);
但是段 3 可以带有偏移值或极限值,或者完全不同的东西。
非常感激