您好,欢迎访问一九零五行业门户网

php如何实现url路由分发功能

php实现url路由分发功能的方法:首先要在服务器的配置上对【/router/】路径进行拦截;然后实现路由分发器,并获取请求的uri;最后进行模块的编写。
【相关学习推荐:php图文教程】
php实现url路由分发功能的方法:
第一步,首先要在服务器的配置上对/router/路径进行拦截
调用某个文件夹目录下的index.php页面,假定现在所有模块使用单独的文件存放于class目录下,该目录与router平级,如下图所示:
第二步,路由分发器的实现(index.php)
<!doctype html> <html> <head> <title>路由测试~~</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head><body><?phpdate_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('参数错误'); } 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("要调用的方法不存在"); } 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>
获取请求的uri,然后拿到要加载的模块名、调用方法名,对uri参数进行简单的判断..
第三步,模块的编写
根据上述的uri,我们要调用的是hello模块下的router方法,那么可以在class目录下定义一个名为hello.class.php的文件(注意linux下是区分大小写的)
<?phpclass 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>"; } } ?>
同理,我们可以编写ha模块..
这算是实现了很简单的url路由分发功能了…
相关学习推荐:php编程(视频)
以上就是php如何实现url路由分发功能的详细内容。
其它类似信息

推荐信息