> 백엔드 개발 > PHP 튜토리얼 > PHP에서 간단한 라우팅을 구현하는 방법

PHP에서 간단한 라우팅을 구현하는 방법

*文
풀어 주다: 2023-03-18 21:18:01
원래의
6858명이 탐색했습니다.

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[&#39;PHP_SELF&#39;]) . &#39;/&#39; . $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[&#39;REQUEST_URI&#39;], PHP_URL_PATH);
    $requestMethod = $_SERVER[&#39;REQUEST_METHOD&#39;];
 
    if (strpos(self::$match, &#39;(&#39;) === false) {
      self::normalMatch($requestUri);
    } else {
      self::regexpMatch($requestUri);
    }
 
  }
 
  /**
   * Determining whether the route is found
   * @return boolean
   */
  public static function isNotFound()
  {
    return !self::$routeFound;
  }
 
}
로그인 후 복사

관련 권장 사항:

thinkphp 라우팅 규칙에 대한 궁극적인 자세한 설명( with pseudo-static) - 멍청한 놈들을 위한 필독서

Yii 운영 메커니즘 및 라우팅에 대한 자세한 설명

PHP에서 MVC 프레임워크를 배우는 방법

위 내용은 PHP에서 간단한 라우팅을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿