我想为 URL 指定路由规则/responder/1/type/2/category/3/...
,在控制器中我可以获取字符串/responder/1/type/2/category/3/...
并剪切这个字符串:
[0] = responder;
[1] = 1;
[2] = type;
[3] = 2;
等等。URL 设置的数量可以是无限的
我想为 URL 指定路由规则/responder/1/type/2/category/3/...
,在控制器中我可以获取字符串/responder/1/type/2/category/3/...
并剪切这个字符串:
[0] = responder;
[1] = 1;
[2] = type;
[3] = 2;
等等。URL 设置的数量可以是无限的
听起来您正在寻找 URI 类:http ://ellislab.com/codeigniter/user-guide/libraries/uri.html
segment_array()
您可以通过调用控制器中的方法将 URL 段作为数组获取:
//get the URI segments
$segments = $this->uri->segment_array();