• php自动加载函数


    含义:将函数注册到SPL __autoload函数栈中。如果该栈中的函数尚未激活,则激活它们。
    先看__autoload 函数

    printit.class.php
    <?php
    class PRINTIT {
     function doPrint() {
      echo 'hello world';
     }
    }
    ?>
     
    index.php  
    <?
    function __autoload( $class ) {
     $file = $class . '.class.php';  
     if ( is_file($file) ) {  
      require_once($file);  
     }
    }
     
    $obj = new PRINTIT();
    $obj->doPrint();
    ?>

    在index.php中,由于没有包含printit.class.php,在实例化printit时,自动调用__autoload函数,参数$class的值即为类名printit,此时printit.class.php就被引进来了。

    <?
    function loadprint( $class ) {
     $file = $class . '.class.php';  
     if (is_file($file)) {  
      require_once($file);  
     }
    }
     
    spl_autoload_register( 'loadprint' );
     
    $obj = new PRINTIT();
    $obj->doPrint();

    将__autoload换成loadprint函数。但是loadprint不会像__autoload自动触发,这时spl_autoload_register()就起作用了,它告诉PHP碰到没有定义的类就执行loadprint()。

    调用静态方法

    <?
    class test {
     public static function loadprint( $class ) {
      $file = $class . '.class.php';  
      if (is_file($file)) {  
       require_once($file);  
      }
     }
    }
     
    spl_autoload_register(  array('test','loadprint')  );
    //另一种写法:spl_autoload_register(  "test::loadprint"  );
     
    $obj = new PRINTIT();
    $obj->doPrint();
    ?>
  • 相关阅读:
    【Eclipse】怎样把代码复制到word中并保持颜色
    windows下配置gvim
    这是给开发者的弥天大谎还是至理名言?
    Linux中常用软件安装(基于Ubuntu)
    MyEclipse 9.1优化技巧
    【数据库复习】函数依赖
    Windows下使用Flex入门
    【数据库复习】SQL
    浏览器中的“Linux”
    Unity开发原则
  • 原文地址:https://www.cnblogs.com/wanghaokun/p/6104188.html
Copyright © 2020-2023  润新知