php url路由入门实例
一、什么是php的路由机制
1、路由机制就是把某一个特定形式的url结构中提炼出来系统对应的参数。举个例子,如:http://main.test.com/article/1 其中:/article/1 -> ?_m=article&id=1。
2、然后将拥有对应参数的url转换成特定形式的url结构,是上面的过程的逆向过程。
二、php的url路由方式
总体来说就是:获取路径信息->处理路径信息
url路由方式:
第一种是通过url参数进行映射的方式,一般是两个参数,分别代表控制器类和方法比如index.php?c=index&m=index映射到的是index控制器的index方法。
第二种,是通过url-rewrite的方式,这样的好处是可以实现对非php结尾的其他后缀进行映射,当然通过rewrite也可以实现第一种方式,不过纯使用rewrite的也比较常见,一般需要配置apache或者nginx的
rewrite规则
<ifmodule mod_rewrite.c>
rewriteengine on
rewritebase /
rewriterule ^index\.php$ - [l]
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewriterule . /index.php [l]
</ifmodule>
第三种,就是通过pathinfo的方式,所谓的pathinfo,就是形如这样的url。xxx.com/index.php/c/index/aa/cc,apache在处理这个url的时候会把index.php后面的部分输入到环境变量$_server['path_info'],它等于/c/index/aa/cc。然后我们的路由器再通过解析这个串进行分析就可以了,后面的部分放入到参数什么地方的,就依据各个框架不同而不同了。
三、 一个简单的php路由实现
3.1 修改htaccess文件
编写服务器apache或iis自带的rewrite文件,将url结构导入指定文件比如:index.php。
开启rewrite:htaccess文件是apache服务器中的一个配置文件,它负责相关目录下的网页配置。启用.htaccess,需要修改apache/conf/httpd.conf,启用allowoverride,并可以用allowoverride限制特定命令的使用。
<directory />
options followsymlinks
allowoverride none
</directory>
改为
<directory />
options followsymlinks
allowoverride all
</directory>
然后我写了这样的rewrite:
rewriteengine on #rewriteengine为重写引擎开关on为开启off为关闭
#rewritecond $1 !^(index.php\.php|images|robots\.txt)
rewriterule ([a-za-z]{1,})-([0-9]{1,}).html$ sharexie/test.php?action=$1&id=$2
#([a-za-z]{1,})-([0-9]{1,}).html$是规则,sharexie/test.php?action=$1&id=$2是要替换的格式,$1代表第一个括号匹配的值,$2代表第二个。
上面的代码就是将url结构导入sharexie/test.php中。把这些保存为.htaccess文件放在网站的根目录就行了。
test.php
<?php
echo '你的action是:' . $_get['action'];
echo '<br/>';
echo '你的id是:' . $_get['id'];
?>
好了,我们现在在浏览器中输入:
127.0.0.1/view-12.html
输出的是:
你的action是:view
你的id是:12
1、讲解一下rewriterule:
rewriterule是重写规则,支持正则表达式的,上面的([0-9]{1,})是指由数字组成的,$是结束标志,说明是以数字结束!
2、rewriterule配置参数
1) r 强制外部重定向
2) f 禁用url,返回403http状态码。
3) g 强制url为gone,返回410http状态码。
4) p 强制使用代理转发。
5) l 表明当前规则是最后一条规则,停止分析以后规则的重写。
6) n 重新从第一条规则开始运行重写过程。
7) c 与下一条规则关联8) t=mime-type(force mime type) 强制mime类型
9) ns 只用于不是内部子请求
10) nc 不区分大小写
11) qsa 追加请求字符串
12) ne 不在输出转义特殊字符 \%3d$1 等价于 =$1
举例:
1、将xianglc将定到 index.php?c=myuser&m=itime&domain=xianglc
rewriterule ^([a-za-z0-9]){6,20}/?$ index.php?c=myuser&m=itime&domain=$0 [l]
2、#rewriterule ^/index.html$ /1.php [l]
rewriterule ^/index-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)$ $9&a=$1&b=$2&c=$3&d=$4&e=$5&f=$6&g=$7&h=$8 [c,nc]
rewriterule ^(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?).html(.*?)$ /1.php?$7&i=$1&j=$2&k=$3&l=$4&m=$5&n=$6 [qsa,l,nc]
3.2 一个路由解析器,用来解析规则,匹配和转换url。
先将所有的链接转到index.php中,在index.php中进行路由分发,按照类和方法分配到相应的类文件中的函数上去。用$_server['request_uri']取出url中的www.xx.com/后面的部分,按照相关规则分别区分为class和mothod以及参数key=>value的值。最后include该类文件,执行其中的函数。实例如下:
<?php
error_reporting(0);
date_default_timezone_set("asia/shanghai");
$_documentpath = $_server['document_root'];
$_requesturi = $_server['request_uri'];
$_urlpath = $_requesturi;
$_filepath = __file__;
$_apppath = str_replace($_documentpath, '', $_filepath); //==>\router\index.php
$_apppatharr = explode(directory_separator, $_apppath);
for ($i = 0; $i < count($_apppatharr); $i++) {
$p = $_apppatharr[$i];
if ($p) {
$_urlpath = preg_replace('/^\/'.$p.'\//', '/', $_urlpath, 1);
}
}
$_urlpath = preg_replace('/^\//', '', $_urlpath, 1);
$_apppatharr = explode("/", $_urlpath);
$_apppatharr_count = count($_apppatharr);
$arr_url = array(
'controller' => 'sharexie/test',
'method' => 'index',
'parms' => array()
);
$arr_url['controller'] = $_apppatharr[0];
$arr_url['method'] = $_apppatharr[1];
if ($_apppatharr_count > 2 and $_apppatharr_count % 2 != 0) {
die('参数错误');
} else {
for ($i = 2; $i < $_apppatharr_count; $i += 2) {
$arr_temp_hash = array(strtolower($_apppatharr[$i])=>$_apppatharr[$i + 1]);
$arr_url['parms'] = array_merge($arr_url['parms'], $arr_temp_hash);
}
}
$module_name = $arr_url['controller'];
$module_file = $module_name.'.class.php';
$method_name = $arr_url['method'];
if (file_exists($module_file)) {
include $module_file;
$obj_module = new $module_name();
if (!method_exists($obj_module, $method_name)) {
die("要调用的方法不存在");
} else {
if (is_callable(array($obj_module, $method_name))) {
$obj_module -> $method_name($module_name, $arr_url['parms']);
$obj_module -> printresult();
}
}
} else {
die("定义的模块不存在");
}
?>