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

    spl_autoload_register — 注册给定的函数作为 __autoload 的实现

    bool spl_autoload_register ([ callable $autoload_function [, bool $throw = true [, bool $prepend = false ]]] )

    参数
    
    autoload_function
    欲注册的自动装载函数。如果没有提供任何参数,则自动注册 autoload 的默认实现函数spl_autoload()。
    
    throw
    此参数设置了 autoload_function 无法成功注册时, spl_autoload_register()是否抛出异常。
    
    prepend
    如果是 true,spl_autoload_register() 会添加函数到队列之首,而不是队列尾部。

    在了解这个函数之前先来看另一个函数:__autoload。  

    一、__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();
    ?>
  • 相关阅读:
    bilibili安卓视频缓存生成mp4
    Java实现kmp算法,少量注释
    小程序MQTT、mqtt超简单的连接、附带Demo
    【STM32H7】第15章 ThreadX GUIX定时器更新功能
    【STM32F429】第15章 ThreadX GUIX定时器更新功能
    【STM32H7】第14章 GUIX Studio设计窗口切换
    【STM32F429】第14章 GUIX Studio设计窗口切换
    【STM32H7】第13章 ThreadX GUIX窗口任意位置绘制2D图形
    【STM32F429】第13章 ThreadX GUIX窗口任意位置绘制2D图形
    【STM32H7】第12章 GUIX Studio生成代码移植到硬件平台
  • 原文地址:https://www.cnblogs.com/fyy-888/p/5497507.html
Copyright © 2011-2022 走看看