我遇到了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段可以包含偏移值或限制值,或完全不同的东西。
非常感谢