国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > 建站經(jīng)驗 > 正文

thinkphp路由規(guī)則使用示例詳解和偽靜態(tài)功能實現(xiàn)(apache重寫)

2024-04-25 20:31:05
字體:
供稿:網(wǎng)友

 這篇文章主要介紹了thinkphp路由規(guī)則使用示例詳解和偽靜態(tài)功能實現(xiàn)(apache重寫),需要的朋友可以參考下

代碼如下:

<?php 
//thinkphp 路由定義規(guī)則  
$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';

//循環(huán)匹配路由規(guī)則
foreach($route as $key=>$value){
  //如果匹配成功,則不繼續(xù)匹配
  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的重寫模塊
//重寫規(guī)則 : RewriteRule  ^(.+)$  /index.php/$1 
//開啟后,apache會自動把 http:/www.test.com/news/read/2012/2/21/extraparam/test.html轉(zhuǎn)換為 http:/www.test.com/index.php/news/read/2012/2/21/extraparam/test.html

/**
 *  @$rule  string    路由規(guī)則   
 *  @$route string    規(guī)則映射的新地址
 *  @$regx  string    地址欄pathinfo字符串
 *  @$extension stirng  偽靜態(tài)拓展名
 *  return  bool 
 */
function parseUrlRule($rule,$route,$regx,$extension=null){
   //去掉后綴名
   !is_null($extension) && $regx = str_replace('.'.$extension,'',$regx);

   //把路由規(guī)則和地址,分割到數(shù)組中,然后逐項匹配
   $ruleArr = explode('/',$rule);
   $regxArr = explode('/',$regx);

   //$route以數(shù)組的格式傳遞,則取第一個
   $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;
       break;
      }elseif(strpos($value,'^')){
       $stripArr = explode('|',trim(strstr($value,'^'),'^'));
       if(in_array($regxArr[$key],$stripArr)){
        $match = false;
        break;
       }
      }
     //靜態(tài)項不區(qū)分大小寫
     }elseif(strcasecmp($value, $regxArr[$key])!==0) {
      $match = false;
      break;
     }
   }

   //匹配成功
   if($match){
     //把動態(tài)變量寫入到數(shù)組$matches 中,同時去除靜態(tài)匹配項
     foreach($ruleArr as $key=>$value){
       if(strpos($value,':')===0){
        //獲取動態(tài)變量,作為數(shù)組下標
        if(substr($value,-2,1)=='//')
         $matchKey = substr($value,1,-2);
        elseif($pos=strpos($value,'^'))
         $matchKey =substr($value,1,$pos-1); 
        else
         $matchKey = substr($value,1);

        $matches[$matchKey] = array_shift($regxArr);
       }else
        array_shift($regxArr);   //去除靜態(tài)匹配項
     }


     //獲取數(shù)組中的值,目的是配合子模式進行替換

主站蜘蛛池模板: 什邡市| 神木县| 南皮县| 曲松县| 婺源县| 庆安县| 上栗县| 浦北县| 浦江县| 罗江县| 天津市| 彩票| 曲阜市| 宁津县| 岳普湖县| 丰县| 集安市| 甘南县| 定州市| 右玉县| 吴旗县| 荣昌县| 揭西县| 马鞍山市| 朝阳县| 钟山县| 黄石市| 南京市| 淮安市| 徐汇区| 禹州市| 潞西市| 桑植县| 神农架林区| 江陵县| 喀什市| 卢湾区| 南漳县| 通州区| 讷河市| 大庆市|