當(dāng)前位置:首頁(yè)文章首頁(yè) IT學(xué)院 PHP

關(guān)于php url路由的實(shí)現(xiàn)

作者:  來(lái)源:  發(fā)布時(shí)間:2011-5-20 15:09:52  點(diǎn)擊:

這篇文章提供分享給大家,是關(guān)于php url路由的實(shí)現(xiàn),下面的詳細(xì)的解析,希望對(duì)各位有所幫助。

1.符合規(guī)則定義的偽靜態(tài)訪問(wèn)路徑解析

對(duì)于"test.php/user/lists/normal/id/2.html" 可解析為
control = user,action = lists,filter = normal,order = id,curPage = 3

對(duì)于"test.php/users/lists.html" 可解析為
control = user,action = lists,filter = all,order = '',curPage = 1 可取得規(guī)則定義中的默認(rèn)值

2.不符合規(guī)則定義的偽靜態(tài)路徑解析

action,control 不符合規(guī)則
對(duì)于"test.php/users/lists/all/id1/1.html" 報(bào)錯(cuò)
試圖訪問(wèn)不存在的頁(yè)面

不符合匹配模式
對(duì)于"test.php/user/lists/all/id1/1.html" 可解析為
control = user,action = lists,filter = all,order = '',curPage = 1
可取得不符合匹配模式項(xiàng)目的默認(rèn)值,上例 order 不符合匹配模式

定義路由規(guī)則時(shí)可以定義默認(rèn)值,當(dāng)在pathinfo中找不到匹配的值,能取得默認(rèn)值

<?php

// url 路由規(guī)則定義

$urlRule = array(

    'user' => array(            // control

        'lists' => array(       // action

            //'名稱(chēng)'    => '默認(rèn)值,值模式匹配'

            'filter'    => 'all,^(all|normal|admin)$',

            'order'     => ',^-?[a-zA-Z_]+$',

            'curPage'   => '1,^[0-9]+$',

          ),

    ),

);

function parseUrl(){

        $queryString = array();

        $GLOBALS['control'] = 'index';

        $GLOBALS['action'] = 'index';

        if (isset($_SERVER['PATH_INFO'])){

                //獲取  pathinfo

                $aPathInfo = explode('/', substr($_SERVER['PATH_INFO'], 1, strrpos($_SERVER['PATH_INFO'], '.')-1));

                // 獲取 control

                $GLOBALS['control'] = $aPathInfo[0];

                array_shift($aPathInfo);

                // 獲取 action

                $GLOBALS['action'] = (isset($aPathInfo[0]) ? $aPathInfo[0] : 'index');

                array_shift($aPathInfo);

                // 獲取 入口文件名

                $GLOBALS['PHP_SELF'] = str_replace($_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF']);

                $queryString = $aPathInfo;

        }

        parseQueryString($queryString);

}

function parseQueryString(array$aQueryString){

        $queryString = array();

        // control 與 action 為默認(rèn)值時(shí) 

        if ($GLOBALS['control'] == 'index' && $GLOBALS['action'] == 'index'){

                $GLOBALS['queryString'] = $queryString;

                return true;

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z