中易网

如何在PHP中实现URL路由

答案:2  悬赏:10  
解决时间 2021-01-15 19:57
  • 提问者网友:贪了杯
  • 2021-01-15 00:11
如何在PHP中实现URL路由
最佳答案
  • 二级知识专家网友:过活
  • 2021-01-15 01:28
统一网站的入口,方便程序在应用环境初始变量方面的初始化工作,使网站更安全。

统一的入口会对URL进行解析,初始化环境神马的,然后分配不同的工作,有点像路由器。
这样可以美化URL,便于用户记忆,优化搜索引擎收录。
全部回答
  • 1楼网友:三千妖杀
  • 2021-01-15 02:59
第一步,首先要在服务器的配置上对/router/路径进行拦截

调用某个文件夹目录下的index.php页面,假定现在所有模块使用单独的文件存放于class目录下,该目录与router平级,如下图所示:
第二步,路由分发器的实现(index.php)
1:
2:
3:
4: 路由测试~~
5:
6:
7:
8:
9: 10:
11: date_default_timezone_set("Asia/Shanghai");
12:
13: define("MODULE_DIR", "../class/");
14:
15:
16: $_DocumentPath = $_SERVER['DOCUMENT_ROOT'];
17: $_FilePath = __FILE__;
18: $_RequestUri = $_SERVER['REQUEST_URI'];
19:
20: $_AppPath = str_replace($_DocumentPath, '', $_FilePath); //==>\router\index.php
21: $_UrlPath = $_RequestUri; //==>/router/hello/router/a/b/c/d/abc/index.html?id=3&url=http:
22:
23: $_AppPathArr = explode(DIRECTORY_SEPARATOR, $_AppPath);
24:
25:
30:
31: for ($i = 0; $i < count($_AppPathArr); $i++) {
32: $p = $_AppPathArr[$i];
33: if ($p) {
34: $_UrlPath = preg_replace('/^\/'.$p.'\//', '/', $_UrlPath, 1);
35: }
36: }
37:
38: $_UrlPath = preg_replace('/^\//', '', $_UrlPath, 1);
39:
40: $_AppPathArr = explode("/", $_UrlPath);
41: $_AppPathArr_Count = count($_AppPathArr);
42:
43: $arr_url = array(
44: 'controller' => 'index',
45: 'method' => 'index',
46: 'parms' => array()
47: );
48:
49: $arr_url['controller'] = $_AppPathArr[0];
50: $arr_url['method'] = $_AppPathArr[1];
51:
52: if ($_AppPathArr_Count > 2 and $_AppPathArr_Count % 2 != 0) {
53: die('参数错误');
54: } else {
55: for ($i = 2; $i < $_AppPathArr_Count; $i += 2) {
56: $arr_temp_hash = array(strtolower($_AppPathArr[$i])=>$_AppPathArr[$i + 1]);
57: $arr_url['parms'] = array_merge($arr_url['parms'], $arr_temp_hash);
58: }
59: }
60:
61: $module_name = $arr_url['controller'];
62: $module_file = MODULE_DIR.$module_name.'.class.php';
63: $method_name = $arr_url['method'];
64:
65: if (file_exists($module_file)) {
66: include $module_file;
67:
68: $obj_module = new $module_name();
69:
70: if (!method_exists($obj_module, $method_name)) {
71: die("要调用的方法不存在");
72: } else {
73: if (is_callable(array($obj_module, $method_name))) {
74: $obj_module -> $method_name($module_name, $arr_url['parms']);
75:
76: $obj_module -> printResult();
77: }
78: }
79:
80: } else {
81: die("定义的模块不存在");
82: }
83:
84:
85: ?>
86:
87:
88:
获取请求的uri,然后拿到要加载的模块名、调用方法名,对uri参数进行简单的判断..

第三步,模块的编写
根据上述的uri,我们要调用的是Hello模块下的router方法,那么可以在class目录下定义一个名为Hello.class.php的文件(注意linux下是区分大小写的)
1: 2:
3: class Hello {
4:
5: private $_name;
6: private $_varValue;
7:
8: function __construct() {
9:
10: }
11:
12: function router() {
13: $this->_name = func_get_arg(0);
14: $this->_varValue = func_get_arg(1);
15: }
16:
17: function printResult() {
18: echo $this->_name;
19: echo "
";
20: echo var_dump($this->_varValue);
21: echo "";
22: }
23: }
24:
25: ?>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息!
大家都在看
推荐信息