标签:ci-php
CI中的router设置
application/config/routes.php中定义了一个名为$route的数组,用来设置默认路由和404页面以及可以设置一些匹配方式。
1.设置默认路由 $route[‘default_controller’] = “demo/index”; demo 对应controller 名称, index 对应方法名称
2.
以此类推,可以写多种规则的路由,写个复杂的
function index(
$article_type 对应 fenlei|tag
$hot_filter 对应 hot_7|hot_30|hot_all
$page 对应 ([0-9]+)?
这样可以很好的将url中的参数传入函数中,这种方法比较简洁,另外还有一种方法可以获取url参数,使用($this->uri->segment_array();)这个函数获取各个参数但是比较乱。
标签:ci-php
原文地址:http://blog.csdn.net/biboqingtian/article/details/45111927