zoukankan      html  css  js  c++  java
  • 详解spl_autoload_register()函数

    一、__autoload  

    这是一个自动加载函数,在PHP5中,当我们实例化一个未定义的类时,就会触发此函数。看下面例子:  

    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后正常输出hello world。在index.php中,由于没有包含printit.class.php,在实例化printit时,自动调用__autoload函数,参数$class的值即为类名printit,此时printit.class.php就被引进来了。  

    在面向对象中这种方法经常使用,可以避免书写过多的引用文件,同时也使整个系统更加灵活。  

    二、spl_autoload_register()  

    再看spl_autoload_register(),这个函数与__autoload有与曲同工之妙,看个简单的例子:  

      
     
    <?
    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()。 

    spl_autoload_register() 调用静态方法 

      
     
    <? 
     
    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();

    ?>

  • 相关阅读:
    搜索存储过程中的关键字
    替换回车换行
    js 常用正则表达式
    获取存储过程返回值
    DataReader 转datatable
    文件打包下载
    My97DatePicker设置当天之后的日期不可选变灰色
    嵌套类引用实例化的外部类的方法
    可叠加定义的成员变量的赋值及操作(权限)
    Java中List中remove的实质
  • 原文地址:https://www.cnblogs.com/ghjbk/p/6795963.html
Copyright © 2011-2022 走看看