application/config/routes.php中定义了一个名为$route的数组,用来设置默认路由和404页面以及可以设置一些匹配方式。
1.设置默认路由 $route[‘default_controller’] = “demo/index”; demo 对应controller 名称, index 对应方法名称
2.route[‘list′]=“demo/list”;route[‘p/([0-9]+)?’] = “demo/details/1‘‘;访问的时候可以用正则表达式,将参数传入到functiondetail(id = 0 ){} 给 $id 、
以此类推,可以写多种规则的路由,写个复杂的
route[‘(fenlei|tag)/(hot7|hot30|hotall)?/p([0?9]+)?′]=“demo/index/1/3//2″;
function index(articletype=‘fenlei′,page = 1,tag=”,hot_filter= ‘new’){}
$article_type 对应 fenlei|tag
$hot_filter 对应 hot_7|hot_30|hot_all
$page 对应 ([0-9]+)?
这样可以很好的将url中的参数传入函数中,这种方法比较简洁,另外还有一种方法可以获取url参数,使用($this->uri->segment_array();)这个函数获取各个参数但是比较乱。
时间: 2024-10-13 08:47:15