復制代碼 代碼如下:
<?php
//thinkphp 路由定義規則
$route = array(
'news/:action/:year/d/:month/:day'=>'news/read?year=:2&month=:3&day=:4',
'news/:action^delete|update|insert/:year/d/:month/:day'=>array( 'news/read?extra=:2&status=1','year=:2&month=:3&day=:4'),
);
$url = 'http://www.test.com/index.php/news/read/2012/2/21/extraparam/test.html';
//后綴名
$extension = 'html';
//可知: $_SERVER['PATH_INFO'] = 'news/read/2012/2/21/extraparam/test.html';
$regx = 'news/read/2012/2/21/extraparam/test.html';
//循環匹配路由規則
foreach($route as $key=>$value){
//如果匹配成功,則不繼續匹配
if(parseUrlRule($key,$value,$regx,$extension))
break;
}
//運行結果: 打印$_GET
//Array
// (
// [actionName] => read
// [moduleName] => news
// [extra] => 2012
// [status] => 1
// [extraparam] => test
// [year] => 2012
// [month] => 2
// [day] => 21
// [finalUrl] => news/read?extra=2012&status=1&extraparam=test&year=2012&month=2&day=21
// )
// [Finished in 0.6s]
//相當于訪問: http://www.test.com/news/read?extra=2012&status=1&extraparam=test&year=2012&month=2&day=21
//在部署時會把index.php隱藏,開啟apache的重寫模塊
//重寫規則 : RewriteRule ^(.+)$ /index.php/$1
//開啟后,apache會自動把 http:/www.test.com/news/read/2012/2/21/extraparam/test.html轉換為 http:/www.test.com/index.php/news/read/2012/2/21/extraparam/test.html
/**
* @$rule string 路由規則
* @$route string 規則映射的新地址
* @$regx string 地址欄pathinfo字符串
* @$extension stirng 偽靜態拓展名
* return bool
*/
function parseUrlRule($rule,$route,$regx,$extension=null){
//去掉后綴名
!is_null($extension) && $regx = str_replace('.'.$extension,'',$regx);
//把路由規則和地址,分割到數組中,然后逐項匹配
$ruleArr = explode('/',$rule);
$regxArr = explode('/',$regx);
//$route以數組的格式傳遞,則取第一個
$url = is_array($route) ? $route[0] : $route;
$match =true;
//匹配檢測
foreach($ruleArr as $key=>$value){
if(strpos($value,':')===0){
if(substr($value,-2)=='//d' && !is_numeric($regxArr[$key])){
$match = false;
新聞熱點
疑難解答