问题描述
- ci框架[2.x]版本 设置了路由,方法里面用segment怎么接收参数
-
配置文件里面路由规则是默认的,如下:
$config['uri_protocol'] = 'AUTO';配置路由规则如下:
$route['special/(d+).html'] = "home/special_detail/$1";访问地址:http://www.test.cn/special/21.html
在控制器里面接收参数id:
function special_detail(){
$id = $this->uri->segment(3);print_r($id);die;
}打印结果为空,但是$this->uri->segment(2)打印结果却是21.html,为什么呢?怎么才能用上面的方法接收?
时间: 2024-11-08 21:14:18