您的位置:首页 > 编程学习 > > 正文

php框架使用方法大全(PHP MVC框架中类的自动加载机制实例分析)

更多 时间:2021-10-23 10:30:07 类别:编程学习 浏览量:2664

php框架使用方法大全

PHP MVC框架中类的自动加载机制实例分析

本文实例讲述了PHP MVC框架中类的自动加载机制。分享给大家供大家参考,具体如下:

原文

实现类的自动加载主要使用到了set_include_pathspl_autoload_register函数。

set_include_path用于提前设置好可能会加载的类的路径。

spl_autoload_register用于调用相关自动加载所需类的函数,实现自动载入的功能。

有一点要注意的是:自动加载在实例化类的时候执行,也就是说使用extends继承类的时候,是不会自动加载父类的。

设置目录如下:

php框架使用方法大全(PHP MVC框架中类的自动加载机制实例分析)

实现自动加载功能相关的文件有:Loader.php,config.php,boot.php,index.php

config.php

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • <?php
  • /**
  •  * Created by PhpStorm.
  •  * User: koastal
  •  * Date: 2016/5/15
  •  * Time: 10:48
  •  */
  • define("APP_PATH",__DIR__."/..");
  • define("Controller_PATH",__DIR__."/../controller");
  • define("Model_PATH",__DIR__."/../model");
  • define("View_PATH",__DIR__."/../view");
  • Loader.php

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • <?php
  • /**
  •  * Created by PhpStorm.
  •  * User: koastal
  •  * Date: 2016/5/15
  •  * Time: 12:03
  •  */
  • class Loader
  • {
  •   public static function baseLoad()
  •   {
  •     require_once("Controller.php");
  •     require_once("Model.php");
  •   }
  •   public static function autoload($class)
  •   {
  •     $path = $class.".class.php";
  •     require_once($path);
  •   }
  • }
  • $include = array(Controller_PATH, Model_PATH,View_PATH);
  • set_include_path(get_include_path() . PATH_SEPARATOR .implode(PATH_SEPARATOR, $include));
  • spl_autoload_register(array('Loader', 'autoload'));
  • Loader::baseLoad();
  • boot.php

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • <?php
  • /**
  •  * Created by PhpStorm.
  •  * User: koastal
  •  * Date: 2016/5/15
  •  * Time: 12:19
  •  */
  • require_once("Loader.php");
  • index.php

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • <?php
  • require_once(__DIR__."/libs/config.php");
  • require_once(__DIR__."/libs/boot.php");
  • $obj = new testController();
  • $obj->show();
  • 经测试,以上代码可用,全文完。

    加更

    经测试上面的代码,在访问不存在的控制器是会报错,找不到相关类文件。因为我们缺少判断相关类文件是否存在。因此,我们对Loader.php进行优化,首先扫描相关类文件是否存在,如果不存在则报错。

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • <?php
  • /**
  •  * Created by PhpStorm.
  •  * User: koastal
  •  * Date: 2016/5/15
  •  * Time: 12:03
  •  */
  • require_once 'config.php';
  • class Loader
  • {
  •   public static function baseLoad()
  •   {
  •     require_once("Controller.php");
  •     require_once("Model.php");
  •   }
  •   public static function searchFile($filename,$path)
  •   {
  •     $filePath = false;
  •     $list = scandir($path);
  •     foreach($list as $file){
  •       $realPath = $path.DIRECTORY_SEPARATOR.$file;
  •       if(is_dir($realPath) && $file!='.' && $file!='..'){
  •         $res = Loader::searchFile($filename,$realPath);
  •         if($res){
  •           return $res;
  •         }
  •       }elseif($file!='.' && $file!='..'){
  •         if($file == $filename){
  •           $filePath = $realPath;
  •           break;
  •         }
  •       }
  •     }
  •     return $filePath;
  •   }
  •   public static function autoload($class)
  •   {
  •     $filename = $class.".class.php";
  •     $cflag = Loader::searchFile($filename,Controller_PATH);
  •     $mfalg = Loader::searchFile($filename,Model_PATH);
  •     $path = false;
  •     $path = ($cflag != false)? $cflag:$path;
  •     $path = ($mfalg != false)? $mfalg:$path;
  •     if($path == false){
  •       exit("Class Load Failed.");
  •     }else{
  •       require_once($path);
  •     }
  •   }
  • }
  • Loader::baseLoad();
  • spl_autoload_register(array('Loader', 'autoload'));
  • 希望本文所述对大家PHP程序设计有所帮助。

    原文链接:https://blog.csdn.net/koastal/article/details/51417030

    您可能感兴趣