PHP 단순 라우팅 및 클래스 자동 로딩 기능 구현 코드

小云云
풀어 주다: 2023-03-21 10:48:01
원래의
1397명이 탐색했습니다.

이 글은 주로 PHP로 구현되는 간단한 라우팅과 클래스 자동 로딩 기능을 소개하며, PHP 라우팅과 클래스 자동 로딩의 원리와 관련 구현 기술을 예제 형식으로 분석하여 도움이 될 수 있기를 바랍니다. 모두를 도와주세요.

프로젝트 디렉토리는 다음과 같습니다

항목 파일 index.php


<?php
define(&#39;WEBROOT&#39;, &#39;C:/Users/Administrator/Documents/NetBeansProjects/test&#39;);
require_once(WEBROOT.&#39;/core/environment.php&#39;);
core__app::run(); //
로그인 후 복사

클래스가 자동으로 환경 파일을 로드합니다.php


<?php
//根据类名来include文件
class loader {
  //找到对应文件就include
  static function load($name) {
    $file = self::filepath($name);
    if ($file) {
      return include $file;
    }
  }
  static function filepath($name, $ext = &#39;.php&#39;) {
    if (!$ext) {
      $ext = &#39;.php&#39;;
    }
    $file = str_replace(&#39;__&#39;, &#39;/&#39;, $name) . $ext; //类名转路径
    $path .= WEBROOT . &#39;/&#39; . $file;
    if (file_exists($path)) {
      return $path; //找到就返回
    }
    return null;
  }
}
spl_autoload_register(&#39;loader::load&#39;);
로그인 후 복사

여기서 클래스에 대한 내 로딩 규칙은 와 같습니다. core__app::run() </ code>루트 디렉토리/core/app.php에 해당하는 <code>run() 메서드는 spl_autoload_register() 함수를 사용하여 자동 로딩을 구현합니다. 특정 클래스 이름이 호출되면 spl_autoload_register('loader::load')가 자동으로 실행되어 클래스 이름에 따라 해당 클래스 파일이 포함됩니다. core__app::run() 对应 根目录/core/app.php 的 run()方法,用到了spl_autoload_register()函数实现自动加载,当调用某个类名的时候,会自动执行spl_autoload_register(&#39;loader::load&#39;),根据类名include对应的类文件。

app.php入口文件执行的方法开始跑框架流程


<?php
class core__app {
  static function run() {
    $a = $_SERVER[&#39;REQUEST_URI&#39;];
    $uri = rtrim(preg_replace(&#39;/\?.*/&#39;, &#39;&#39;, $_SERVER[&#39;REQUEST_URI&#39;]), &#39;/&#39;);
    $params = explode(&#39;/&#39;, trim($uri, &#39;/&#39;));
    $count = count($params);
    if ($count > 1) {
      $controller = $params[0];
      $method = $params[1];
    } elseif ($count == 1) {
      $controller = &#39;index&#39;;
      $method = $params[0];
    } else {
    }
    $filename = WEBROOT . &#39;/controller/&#39; . $controller . &#39;.php&#39;;
    $controller = &#39;controller__&#39;.$controller;
    try {
      if (!file_exists($filename)) {
        throw new Exception(&#39;controller &#39; . $controller . &#39; is not exists!&#39;);
        return;
      }
      include($filename);
      if (!class_exists($controller)) {
        throw new Exception(&#39;class &#39; . $controller . &#39; is not exists&#39;);
        return;
      }
      $obj = new ReflectionClass($controller);
      if (!$obj->hasMethod($method)) {
        throw new Exception(&#39;method &#39; . $method . &#39; is not exists&#39;);
        return;
      }
    } catch (Exception $e) {
      echo $e; //展示错误结果
      return;
    }
    $newObj = new $controller();
    call_user_func_array(array($newObj, $method), $params);
  }
}
로그인 후 복사

根据请求uri去找对应的controller, 用call_user_func_array()的方式调用controller里的方法

根目录/controller/test.php


<?php
class controller__test {
  public function write($controller, $method) {
    //config__test::load(&#39;test&#39;);
    model__test::write($controller, $method);
  }
}
로그인 후 복사

这里其实调用不一定要调用model里的test方法,可以调model目录下的任意文件,在此之前可以去都读一些config文件等等操作。

根目录/model/test.php


<?php
class model__test {
  public function write($model, $method) {
    echo &#39;From controller:&#39;.$model.&#39; to model: &#39; . $model . &#39; ,method: &#39; . $method;
  }
}
로그인 후 복사

例如hostname/test/write 这个请求就会从入口文件进来,经过core__app::run就会找到controller下对应的的controller__test类,执行write()

app.php 항목 파일을 실행하는 메소드는 프레임워크 프로세스 실행을 시작합니다

rrreee요청 uri에 따라 해당 컨트롤러를 찾고, call_user_func_array()를 사용하여 메소드를 호출합니다. 컨트롤러

root Directory/controller/test.php

rrreee사실 여기서 호출할 때 반드시 모델의 테스트 메서드를 호출할 필요는 없습니다. 그 전에는 모델 디렉터리에 있는 모든 파일을 호출할 수 있습니다. 일부 구성 파일과 기타 작업을 읽을 수 있습니다.

루트 디렉토리/model/test.php


🎜rrreee🎜예를 들어, 호스트 이름/테스트/쓰기 요청은 항목 파일에서 들어오고 core__app::run을 통해 찾을 수 있습니다. 컨트롤러 아래에 해당하는 컨트롤러__test 클래스는 write() 메서드를 실행합니다. 🎜🎜관련 권장 사항: 🎜🎜🎜PHP에서 간단한 라우팅을 구현하는 방법 🎜🎜🎜🎜 JS에서 간단한 라우터 기능을 구현하는 방법 🎜 🎜🎜🎜 JS Method_javascript 기술로 간단한 라우터 기능을 구현하는 방법🎜🎜🎜🎜🎜

위 내용은 PHP 단순 라우팅 및 클래스 자동 로딩 기능 구현 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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