一个简单的php路由类

 2025-01-15  阅读 495  评论 8  点赞 209

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

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

一个简单的php路由类

<?php
namespace cmhc\hcrail;
 
class hcrail
{
 
  /**
   * callback function
   * @var callable
   */
  protected static $callback;
 
  /**
   * match string or match regexp
   * @var string
   */
  protected static $match;
 
  protected static $routefound = false;
 
  /**
   * deal with get,post,head,put,delete,options,head
   * @param  $method
   * @param  $arguments
   * @return
   */
  public static function __callstatic($method, $arguments)
  {
    self::$match = str_replace("//", "/", dirname($_server['php_self']) . '/' . $arguments[0]);
    self::$callback = $arguments[1];
    self::dispatch();
    return;
  }
 
  /**
   * processing ordinary route matches
   * @param string $requesturi
   * @return
   */
  public static function normalmatch($requesturi)
  {
    if (self::$match == $requesturi) {
      self::$routefound = true;
      call_user_func(self::$callback);
    }
    return;
  }
 
  /**
   * processing regular route matches
   * @param string $requesturi
   * @return
   */
  public static function regexpmatch($requesturi)
  {
    //处理正则表达式
    $regexp = self::$match;
    preg_match("#$regexp#", $requesturi, $matches);
    if (!empty($matches)) {
      self::$routefound = true;
      call_user_func(self::$callback, $matches);
    }
    return;
  }
 
  /**
   * dispatch route
   * @return
   */
  public static function dispatch()
  {
    if (self::$routefound) {
      return ;
    }
    $requesturi = parse_url($_server['request_uri'], php_url_path);
    $requestmethod = $_server['request_method'];
 
    if (strpos(self::$match, '(') === false) {
      self::normalmatch($requesturi);
    } else {
      self::regexpmatch($requesturi);
    }
 
  }
 
  /**
   * determining whether the route is found
   * @return boolean
   */
  public static function isnotfound()
  {
    return !self::$routefound;
  }
 
}

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

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


标签:phpphp教程

评论列表:

  •   weihang233
     发布于 3天前回复该评论
  • 写的很不错,学到了!
  •   echo111
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0271秒, 内存占用1.93 MB, 访问数据库29次

冀ICP备19034377号