当前位置:首页 > PHP教程 > php面向对象 > 列表

PHP类的自动载入程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-12-24 13:33:36 浏览: 评论:0 

自动载入类在php中魔术方法了,我们可以通过php中的_autoload方法来实现了,下面一起来看一篇关于PHP类的自动载入程序代码,希望本文章对各位有帮助.

加入我们现在有两个PHP文件,内容如下:

Test1.php

  1. <?php 
  2.  
  3. class Test1 { 
  4.  
  5.     public function func1() { 
  6.  
  7.         return 'test1'
  8.  
  9.     } 
  10.  
  11.  
  12. ?> 

Test2.php

  1. <?php 
  2.  
  3. class Test2 { 
  4.  
  5.     public function func2() { 
  6.  
  7.         return 'test2'
  8.  
  9.     } 
  10.  
  11.  
  12. ?> 

然而在需要载入这两个文件时,传统的写法是这样的:

  1. <?php 
  2. require ('Test1.php'); 
  3. require ('Test2.php'); 
  4. $TestObj1 = new Test1(); 
  5. $TestObj2 = new Test2(); 
  6. echo $TestObj1->func1().'<br/>'
  7. echo $TestObj2->func2(); 
  8. ?> 

现在我们使用PHP类的自动载入,只需要定义 __autoload() 方法既可将类自动载入,方法如下:

  1. <?php 
  2. //define autoload function 
  3. function __autoload($class) { 
  4.     require __DIR__.'/'.$class.'.php'
  5. //phpfensi.com 
  6. $TestObj1 = new Test1(); 
  7. $TestObj2 = new Test2(); 
  8. echo $TestObj1->func1().'<br/>'
  9. echo $TestObj2->func2(); 
  10. ?> 

很方便吧,可是之后__autoload这个函数被废弃掉了,主要原因是因为,我们一个PHP的项目可能会依赖多个框架,如果我们每一个框架都拥有这个函数,那么程序就会报一个函数重复定义的致命错误,当然不用担心,在PHP5.3之后呢,官方提供了一个 spl_autoload_register() 函数来取代 __autoload,这个函数的特点是它允许你存在多个相同的载入函数,即使我写了多个载入,也不会出现任何问题,代码如下:

  1. <?php 
  2. spl_autoload_register(autoload1); 
  3. spl_autoload_register(autoload2); 
  4. //define autoload function 
  5. function autoload1($class) { 
  6.     require __DIR__.'/'.$class.'.php'
  7. function autoload2($class) { 
  8.     require __DIR__.'/'.$class.'.php'
  9. $TestObj1 = new Test1(); 
  10. $TestObj2 = new Test2(); 
  11. echo $TestObj1->func1().'<br/>'
  12. echo $TestObj2->func2(); 
  13. ?> 

这种方法会更先进一些,也是我们采用的最主要的方法。博主最近开发的项目使用的是ThinkPHP框架,就在框架的核心文件Think.class.php中找到它的自动载入函数,拷过来给大家看下。

  1. static public function start() { 
  2.  
  3.     // 注册AUTOLOAD方法 
  4.  
  5.     spl_autoload_register('Think\Think::autoload'); 
  6.  
  7.  
  8. /** 
  9.  
  10.  * 类库自动加载 
  11.  
  12.  * @param string $class 对象类名 
  13.  
  14.  * @return void 
  15.  
  16.  */ 
  17.  
  18. public static function autoload($class) { 
  19.  
  20.     // 检查是否存在映射 
  21.  
  22.     if(isset(self::$_map[$class])) { 
  23.  
  24.         <a href="/tags.php/include/" target="_blank">include</a> self::$_map[$class]; 
  25.  
  26.     } elseif (false !== strpos($class,'\\')){ 
  27.  
  28.         $name = strstr($class'\\', true); 
  29.  
  30.         if(in_array($name,array('Think','Org','Behavior','Com','Vendor')) || is_dir(LIB_PATH.$name)){ 
  31.  
  32.         // Library目录下面的命名空间自动定位 
  33.  
  34.         $path = LIB_PATH; 
  35.  
  36.         }else
  37.  
  38.             // 检测自定义命名空间 否则就以模块为命名空间 
  39.  
  40.             $namespace  =   C('AUTOLOAD_NAMESPACE'); 
  41.  
  42.             $path = isset($namespace[$name])? dirname($namespace[$name]).'/' : APP_PATH; 
  43.  
  44.         } 
  45.  
  46.         $filename = $path . str_replace('\\', '/', $class) . EXT; 
  47.  
  48.         if(is_file($filename)) { 
  49.  
  50.             // Win环境下面严格区分大小写 
  51.  
  52.             if (IS_WIN && false === strpos(str_replace('/''\\'realpath($filename)), $class . EXT)){ 
  53.  
  54.                 return ; 
  55.  
  56.             } 
  57.  
  58.             include $filename
  59.  
  60.         } 
  61.  
  62.     }elseif (!C('APP_USE_NAMESPACE')) { 
  63.  
  64.         // 自动加载的类库层 
  65.  
  66.         <a href="/tags.php/foreach/" target="_blank">foreach</a>(<a href="/tags.php/explode/" target="_blank">explode</a>(',',C('APP_AUTOLOAD_LAYER')) as $layer){ 
  67.  
  68.             if(<a href="/tags.php/substr/" target="_blank">substr</a>($class,-strlen($layer))==$layer){ 
  69.  
  70.                 if(require_cache(MODULE_PATH.$layer.'/'.$class.EXT)) { 
  71.  
  72.                     return ; 
  73.  
  74.                 } 
  75.  
  76.             } 
  77.  
  78.         } 
  79.  
  80.         // 根据自动加载路径设置进行尝试搜索 
  81.  
  82.         foreach (explode(',',C('APP_AUTOLOAD_PATH')) as $path){ 
  83.  
  84.             if(import($path.'.'.$class)) 
  85.  
  86.                 // 如果加载类成功则返回 
  87.  
  88.                 return ; 
  89.  
  90.         } 
  91.  
  92.     } 
  93.  

更多的相关知识大家可以自行去搜索,或者查看相关手册.

Tags: PHP类 PHP自动载入

分享到: