php 简单路由实现
生活随笔
收集整理的這篇文章主要介紹了
php 简单路由实现
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
2019獨角獸企業(yè)重金招聘Python工程師標準>>>
在PHP中,利用單一入口文件實現(xiàn)路徑的訪問,實現(xiàn)形如 http://localhost/project/index.php/module/method/param_key/param_val 的訪問路由
module:模塊名稱(類)
method:模塊方法
param_key:參數(shù)名稱
param_val:參數(shù)值
一、新建項目 route
在 route 下新 index.php,代碼如下
<?php error_reporting(0); define(DIR_CONTROLLER, 'controller/'); // 定義控制器目錄date_default_timezone_set("Asia/Shanghai"); $_DocumentPath = $_SERVER['DOCUMENT_ROOT']; $_RequestUri = $_SERVER['REQUEST_URI']; $_UrlPath = $_RequestUri; $_FilePath = __FILE__; $_AppPath = str_replace($_DocumentPath, '', $_FilePath); //==>\route\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' => 'Index', 'method' => 'index', 'parms' => array() ); $arr_url['controller'] = ucfirst($_AppPathArr[0]); // 模塊名稱,首字母轉(zhuǎn)為大寫$arr_url['method'] = $_AppPathArr[1]; // 獲取參數(shù)if ($_AppPathArr_Count > 2 and $_AppPathArr_Count % 2 != 0) { //die('參數(shù)錯誤'); } 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 = DIR_CONTROLLER.$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($arr_url['parms']); } } } else { die("定義的模塊不存在"); } ?>二、在項目目錄下新建 controller 文件夾,并在該文件夾下新建 Welcome.class.php 文件,代碼如下
<?php class Welcome{public function index($param){echo 'Hello World!';}} ?>三、地址欄輸入?http://localhost/route/index.php/welcome/index/
頁面輸出 “ Hello World!?”
轉(zhuǎn)載于:https://my.oschina.net/u/3460260/blog/1832005
總結(jié)
以上是生活随笔為你收集整理的php 简单路由实现的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 程序员常犯的五个非技术性错误
- 下一篇: php实现 求int型数据在内存中存储时