您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何在PHP項(xiàng)目中實(shí)現(xiàn)一個(gè)url路由功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
什么是php的路由機(jī)制
1、路由機(jī)制就是把某一個(gè)特定形式的URL結(jié)構(gòu)中提煉出來(lái)系統(tǒng)對(duì)應(yīng)的參數(shù)。舉個(gè)例子,如:http://main.test.com/article/1 其中:/article/1 -> ?_m=article&id=1。
2、然后將擁有對(duì)應(yīng)參數(shù)的URL轉(zhuǎn)換成特定形式的URL結(jié)構(gòu),是上面的過(guò)程的逆向過(guò)程。
如果一個(gè)頁(yè)面的內(nèi)容呈現(xiàn),需要根據(jù)url上傳遞的參數(shù)來(lái)進(jìn)行渲染。很多時(shí)候可能是這樣子寫(xiě):xxx.com/xx?c=x&m=x&t=..,而我們看到的url往往是這樣子的(以新浪微游戲的咖啡戀人為例) game.weibo.com/ilovecoffee….這種URL設(shè)計(jì)看上去比前一種更好一點(diǎn):)
如果我們?cè)L問(wèn)一下不存在的游戲應(yīng)用,例如game.weibo.com/ilovecoffee222,則會(huì)輸出如下的錯(cuò)誤提示:
game.weibo.com后面匹配到的項(xiàng),指向了某個(gè)php頁(yè)面,然后根據(jù)參數(shù)獲取要訪問(wèn)的游戲應(yīng)用標(biāo)識(shí),后數(shù)據(jù)庫(kù)或者緩存里查詢?cè)搼?yīng)用標(biāo)識(shí),如果不存在則輸出錯(cuò)誤提示,如果應(yīng)用存在則加載游戲應(yīng)用鏈接地址。
現(xiàn)在寫(xiě)一個(gè)php例子,假設(shè)我的ip為192.168.0.33,我加了一層名為router的路徑,之后跟隨的是 “/模塊名/方法名/參數(shù)1的key/參數(shù)1的value/….”
類(lèi)似這樣的地址:
192.168.0.33/router/Hello/router/a/b/c/d/abc/index.html?id=3&url=http:………………
也就是要調(diào)用Ha這個(gè)模塊中的router方法,并傳入url后面的參數(shù)/a/b/c/d/index………….
第一步,首先要在服務(wù)器的配置上對(duì)/router/路徑進(jìn)行攔截
調(diào)用某個(gè)文件夾目錄下的index.php頁(yè)面,假定現(xiàn)在所有模塊使用單獨(dú)的文件存放于class目錄下,該目錄與router平級(jí),如下圖所示:
第二步,路由分發(fā)器的實(shí)現(xiàn)(index.php)
<!Doctype html> <html> <head> <title>路由測(cè)試~~</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body> <?php date_default_timezone_set("Asia/Shanghai"); define("MODULE_DIR", "../class/"); $_DocumentPath = $_SERVER['DOCUMENT_ROOT']; $_FilePath = __FILE__; $_RequestUri = $_SERVER['REQUEST_URI']; $_AppPath = str_replace($_DocumentPath, '', $_FilePath); //==>\router\index.php $_UrlPath = $_RequestUri; //==>/router/hello/router/a/b/c/d/abc/index.html?id=3&url=http: $_AppPathArr = explode(DIRECTORY_SEPARATOR, $_AppPath); /** * http://192.168.0.33/router/hello/router/a/b/c/d/abc/index.html?id=3&url=http: * * /hello/router/a/b/c/d/abc/index.html?id=3&url=http: */ 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' => 'index', 'method' => 'index', 'parms' => array() ); $arr_url['controller'] = $_AppPathArr[0]; $arr_url['method'] = $_AppPathArr[1]; if ($_AppPathArr_Count > 2 and $_AppPathArr_Count % 2 != 0) { die('參數(shù)錯(cuò)誤'); } 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_DIR.$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("要調(diào)用的方法不存在"); } else { if (is_callable(array($obj_module, $method_name))) { $obj_module -> $method_name($module_name, $arr_url['parms']); $obj_module -> printResult(); } } } else { die("定義的模塊不存在"); } ?> </body> </html>
獲取請(qǐng)求的uri,然后拿到要加載的模塊名、調(diào)用方法名,對(duì)uri參數(shù)進(jìn)行簡(jiǎn)單的判斷..
第三步,模塊的編寫(xiě)
根據(jù)上述的uri,我們要調(diào)用的是Hello模塊下的router方法,那么可以在class目錄下定義一個(gè)名為Hello.class.php的文件(注意linux下是區(qū)分大小寫(xiě)的)
<?php class Hello { private $_name; private $_varValue; function __construct() { } function router() { $this->_name = func_get_arg(0); $this->_varValue = func_get_arg(1); } function printResult() { echo $this->_name; echo "<p>"; echo var_dump($this->_varValue); echo "</p>"; } } ?>
關(guān)于如何在PHP項(xiàng)目中實(shí)現(xiàn)一個(gè)url路由功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。