前端之家收集整理的这篇文章主要介绍了
PHP MVC框架中类的自动加载机制实例分析,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_
403_0@本文实例讲述了
PHP MVC框架中类的
自动加载机制。
分享给大家供大家参考,具体如下:
@H_
403_0@
原文
@H_
403_0@实现类的
自动加载主要使用到了
set_include_path
和
spl_autoload_register
函数。
@H_
403_0@
set_include_path
用于提前设置好可能会加载的类的路径。
@H_
403_0@
spl_autoload_register
用于
调用相关
自动加载所需类的
函数,实现
自动载入的
功能。
@H_
403_0@有一点要注意的是:
自动加载在实例化类的时候执行,也就是说使用extends继承类的时候,是不会
自动加载
父类的。
@H_
403_0@设置目录如下:
@H_
403_0@
@H_
403_0@实现
自动加载
功能相关的
文件有:Loader.
PHP,config.
PHP,boot.
PHP,index.
PHP
@H_
403_0@config.
PHP
<?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");
@H_
403_0@Loader.
PHP
<?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();
@H_
403_0@boot.
PHP
<?PHP
/**
* Created by PHPStorm.
* User: koastal
* Date: 2016/5/15
* Time: 12:19
*/
require_once("Loader.PHP");
@H_
403_0@index.
PHP
<?PHP
require_once(__DIR__."/libs/config.PHP");
require_once(__DIR__."/libs/boot.PHP");
$obj = new testController();
$obj->show();
@H_
403_0@经测试,以上
代码可用,全文完。
@H_
403_0@
加更
@H_
403_0@经测试上面的
代码,在访问不存在的控制器是会报错,找不到相关类
文件。因为我们缺少判断相关类
文件是否存在。因此,我们对Loader.
PHP进行优化,首先扫描相关类
文件是否存在,如果不存在则报错。
<?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'));
@H_
403_0@更多关于
PHP框架相关
内容感兴趣的读者可查看本站专题:《
PHP优秀开发框架总结》、《codeigniter入门教程》、《Think
PHP入门教程》、《Zend FrameWork框架入门教程》、《
PHP面向对象程序设计入门教程》、《
PHP+
MysqL数据库操作入门教程》及《
PHP常见
数据库操作技巧汇总》
@H_
403_0@希望本文所述对大家
PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/525833.html