当前位置:首页 > PHP教程 > php类库 > 列表

php 类自动载入的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-27 15:03:01 浏览: 评论:0 

在PHP5之前,各个PHP框架如果要实现类的自动加载,一般都是按照某种约定自己实现一个遍历目录,自动加载所有符合约定规则的文件的类或函数,当然,PHP5之前对面向对象的支持并不是太好,类的使用也没有现在频繁,我们来详细探讨下吧。

php 类自动载入方法

  1. <?php 
  2. class inload  
  3. /** 
  4.    * 类自动载入,不需要由开发者调用 
  5.    * 
  6.    * @param string $class 类文件 
  7.    */ 
  8.   private function autoload( $class ) 
  9.   { 
  10.     ifemptyempty($class) ) 
  11.     { 
  12.       throw new QException('加载文件不存在'.$class); 
  13.     } 
  14.     else 
  15.     {   
  16.       require _SPRING_.'/_Core/SpringMap.php'//框架地图 
  17.       if(! file_exists$source[$class]['file'] ) ) 
  18.       { 
  19.         throw new QException('加载文件不存在'.$class); 
  20.       }  
  21.       require $source[$class]['file']; 
  22.     } 
  23.   } 
  24.      
  25.   /** 
  26.    * 注册或取消注册一个自动类载入方法 
  27.    * 
  28.    * 该方法参考 Zend Framework 
  29.    * 
  30.    * @param string $class 提供自动载入服务的类 
  31.    * @param boolean $enabled 启用或禁用该服务 
  32.    */ 
  33.   private function registerAutoload($class = 'Interpreter' , $enabled = true) 
  34.   { 
  35.     if (!function_exists('spl_autoload_register')) 
  36.     { 
  37.       throw new QException('spl_autoload 不存在这个PHP的安装'); 
  38.     } 
  39.     if ($enabled === true) 
  40.     { 
  41.       spl_autoload_register(array($class'autoload')); 
  42.     } 
  43.     else 
  44.     { 
  45.       spl_autoload_unregister(array($class'autoload')); 
  46.     } 
  47.   } 
  48.      
  49.   /** 
  50.   * 析构函数 
  51.   */ 
  52.   public function __destruct() 
  53.   { 
  54.     self::registerAutoload('Interpreter' , false); 
  55.   } 

以上所述就是本文的全部内容了,希望大家能够喜欢。

Tags: php类自动载入

分享到: