当前位置:Gxlcms > PHP教程 > 一个简单的php路由类

一个简单的php路由类

时间:2021-07-01 10:21:17 帮助过:33人阅读

本文实例为大家分享了php编写一个简单的路由类,供大家参考,具体内容如下

  1. <?php
  2. namespace cmhc\Hcrail;
  3. class Hcrail
  4. {
  5. /**
  6. * callback function
  7. * @var callable
  8. */
  9. protected static $callback;
  10. /**
  11. * match string or match regexp
  12. * @var string
  13. */
  14. protected static $match;
  15. protected static $routeFound = false;
  16. /**
  17. * deal with get,post,head,put,delete,options,head
  18. * @param $method
  19. * @param $arguments
  20. * @return
  21. */
  22. public static function __callstatic($method, $arguments)
  23. {
  24. self::$match = str_replace("//", "/", dirname($_SERVER['PHP_SELF']) . '/' . $arguments[0]);
  25. self::$callback = $arguments[1];
  26. self::dispatch();
  27. return;
  28. }
  29. /**
  30. * processing ordinary route matches
  31. * @param string $requestUri
  32. * @return
  33. */
  34. public static function normalMatch($requestUri)
  35. {
  36. if (self::$match == $requestUri) {
  37. self::$routeFound = true;
  38. call_user_func(self::$callback);
  39. }
  40. return;
  41. }
  42. /**
  43. * processing regular route matches
  44. * @param string $requestUri
  45. * @return
  46. */
  47. public static function regexpMatch($requestUri)
  48. {
  49. //处理正则表达式
  50. $regexp = self::$match;
  51. preg_match("#$regexp#", $requestUri, $matches);
  52. if (!empty($matches)) {
  53. self::$routeFound = true;
  54. call_user_func(self::$callback, $matches);
  55. }
  56. return;
  57. }
  58. /**
  59. * dispatch route
  60. * @return
  61. */
  62. public static function dispatch()
  63. {
  64. if (self::$routeFound) {
  65. return ;
  66. }
  67. $requestUri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
  68. $requestMethod = $_SERVER['REQUEST_METHOD'];
  69. if (strpos(self::$match, '(') === false) {
  70. self::normalMatch($requestUri);
  71. } else {
  72. self::regexpMatch($requestUri);
  73. }
  74. }
  75. /**
  76. * Determining whether the route is found
  77. * @return boolean
  78. */
  79. public static function isNotFound()
  80. {
  81. return !self::$routeFound;
  82. }
  83. }

下载地址:https://github.com/cmhc/Hcrail

希望本文所述对大家学习PHP程序设计有所帮助。

人气教程排行