首页 后端开发 php教程 php的自动加载机制_PHP教程

php的自动加载机制_PHP教程

Jul 14, 2016 am 10:10 AM
include on php require 使用 加载 实现 方法 机制 自动

一、php中实现自动加载的方法

 

使用require,include,require_once,include_once手工进行加载。

使用__autoload来进行自动加载
使用spl的autoload来实现自动加载
手工加载的实现:

当需要加载的文件很少的时候我们可以使用第一个来完成。这样做很简单也没问题。


[php]
require_once 'a.php'; 
require_once 'b.php'; 
require_once 'c.php'; 

require_once 'a.php';
require_once 'b.php';
require_once 'c.php';
但是当需要加载文件很多的时候这样做还行吗?需要写十个,二十个require_once 或者更多的时候我们该怎么办?

这个时候我们可以使用__autoload方法来简化我们的代码。

__autoload加载的实现:

我们在test目录下创建一个in.php文件,内容如下。


[php]
echo '我是test下面的in.php
'; 

echo '我是test下面的in.php
';然后在test目录下创建一个loader.php,内容如下。

[php]
// 需要重载__autoload方法,自定义包含类文件的路径    
function __autoload($classname)   
{   
    $class_file = strtolower($classname).".php";   
    if (file_exists($class_file)){   
        require_once($class_file);   
    }   

@$test = new in(); // 执行到这里会输出 我是test下面的in.php 

// 需要重载__autoload方法,自定义包含类文件的路径 
function __autoload($classname) 

 $class_file = strtolower($classname).".php"; 
 if (file_exists($class_file)){ 
  require_once($class_file); 
 } 
}
@$test = new in(); // 执行到这里会输出 我是test下面的in.php没问题,成功了!我们还可以创建其他的文件来进行加载,但是当需要的文件很多需要区分目录的时候怎么办?

这时我们需要修改loader.php可以使用映射来找到要加载的文件。


[php]
function __autoload($class_name) { 
    $map = array( 
        'index' => './include/index.php', 
        'in'    => './in.php' 
    ); 
 
    if (file_exists($map[$class_name]) && isset($map[$class_name])) { 
        require_once $map[$class_name]; 
    } 

new index();  

function __autoload($class_name) {
 $map = array(
  'index' => './include/index.php',
  'in' => './in.php'
 );

    if (file_exists($map[$class_name]) && isset($map[$class_name])) {
        require_once $map[$class_name];
    }
}
new index();

这种方法的好处就是类名和文件路径只是用一个映射来维护,所以当文件结构改变的时候,不需要修改类名,只需要将映射中对应的项修改就好了。

但是__autoload在一个项目中只能使用一次,当你的项目引用了别人的一个项目,你的项目中有一个__autoload,别人的项目也有一个__autoload,这样两个__autoload就冲突了.解决的办法就是修改__autoload成为一个,这无疑是非常繁琐的,应用场景单一。


spl的autoload加载实现:

spl的autoload系列函数使用一个autoload调用堆栈,你可以使用spl_autoload_register注册多个自定义的autoload函数,应用场景广泛


spl的自动加载的相关函数\
spl_autoload 是_autoload()的默认实现,它会去include_path中寻找$class_name(.php/.inc) Spl_autoload实现自动加载:
在test目录下建立in.php,内容如下  


[php]
class in { 
    public function index() { 
        echo '我是test下面的in.php'; 
    } 

?> 

class in {
 public function index() {
  echo '我是test下面的in.php';
 }
}
?>        在test目录下建立loader.php,内容如下
[html]
set_include_path("/var/www/test/"); //这里需要将路径放入include 
spl_autoload("in"); //寻找/var/www/test/in.php 
$in = new in(); 
$in->index(); 

set_include_path("/var/www/test/"); //这里需要将路径放入include
spl_autoload("in"); //寻找/var/www/test/in.php
$in = new in();
$in->index();
spl_autoload_register将函数注册到SPL __autoload函数栈中,修改loader.php
[php]
function AutoLoad($class){ 
    if($class == 'in'){ 
        require_once("/var/www/test/in.php"); 
    } 

spl_autoload_register('AutoLoad'); 
$a = new in(); 
$a->index(); 

function AutoLoad($class){
    if($class == 'in'){
        require_once("/var/www/test/in.php");
    }
}
spl_autoload_register('AutoLoad');
$a = new in();
$a->index();

 

spl_autoload_register注册多个自定义的autoload函数的应用
首先在test目录下建立mods文件夹并建立inmod.mod.php内容如下:
[php]
class inmod 

    function __construct() 
    { 
        echo '我是mods下的in'; 
    } 

class inmod
{
 function __construct()
 {
  echo '我是mods下的in';
 }
}
          然后在test目录下建立libs文件夹并建立inlib.lib.php内容如下:
[php]
class inlib 

    function __construct() 
    { 
        echo '我是libs下的in'; 
    } 

class inlib
{
 function __construct()
 {
  echo '我是libs下的in';
 }
}           最后在test目录下建立loader.php内容如下
[php]
class Loader { 
    /**
    * 自动加载类
    * @param $class 类名
    */ 
    public static function mods($class) { 
        if($class){ 
            set_include_path( "/var/www/test/mods/" ); 
            spl_autoload_extensions( ".mod.php" ); 
            spl_autoload( strtolower($class) ); 
        } 
    } 
    public static function libs($class) { 
        if($class){ 
            set_include_path( "/var/www/test/libs/" ); 
            spl_autoload_extensions( ".lib.php" ); 
            spl_autoload( strtolower($class) ); 
        } 
    } 

spl_autoload_register(array('Loader', 'mods')); 
spl_autoload_register(array('Loader', 'libs')); 
new inmod();//输出我是mods下的in  
new inlib();//输出我是libs下的in 

class Loader {
    /**
    * 自动加载类
    * @param $class 类名
    */
    public static function mods($class) {
        if($class){
   set_include_path( "/var/www/test/mods/" );
   spl_autoload_extensions( ".mod.php" );
   spl_autoload( strtolower($class) );
        }
    }
    public static function libs($class) {
  if($class){
   set_include_path( "/var/www/test/libs/" );
   spl_autoload_extensions( ".lib.php" );
   spl_autoload( strtolower($class) );
        }
    }
}
spl_autoload_register(array('Loader', 'mods'));
spl_autoload_register(array('Loader', 'libs'));
new inmod();//输出我是mods下的in
new inlib();//输出我是libs下的in

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477470.htmlTechArticle一、php中实现自动加载的方法 使用require,include,require_once,include_once手工进行加载。 使用__autoload来进行自动加载 使用spl的autoload来实现...
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

CakePHP 项目配置 CakePHP 项目配置 Sep 10, 2024 pm 05:25 PM

在本章中,我们将了解CakePHP中的环境变量、常规配置、数据库配置和电子邮件配置。

适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 Dec 24, 2024 pm 04:42 PM

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 日期和时间 CakePHP 日期和时间 Sep 10, 2024 pm 05:27 PM

为了在 cakephp4 中处理日期和时间,我们将使用可用的 FrozenTime 类。

CakePHP 文件上传 CakePHP 文件上传 Sep 10, 2024 pm 05:27 PM

为了进行文件上传,我们将使用表单助手。这是文件上传的示例。

CakePHP 路由 CakePHP 路由 Sep 10, 2024 pm 05:25 PM

在本章中,我们将学习以下与路由相关的主题?

讨论 CakePHP 讨论 CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 Dec 20, 2024 am 11:31 AM

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写

CakePHP 创建验证器 CakePHP 创建验证器 Sep 10, 2024 pm 05:26 PM

可以通过在控制器中添加以下两行来创建验证器。

See all articles