详解spl_autoload_register() 与 __autoload
2024-08-14 07:41:38 216人阅读
一、__autoload
这是一个自动加载函数,在PHP5中,当我们实例化一个未定义的类时,就会触发此函数。
printit.
class
.php
function __autoload( $class ) { |
$file = $class . ‘.class.php‘ ; |
?>
运行index.php后正常输出hello world。在index.php中,由于没有包含printit.class.php,在实例化printit时,自动调用__autoload函数, 参数$class的值即为类名printit,此时printit.class.php就被引进来了。
在面向对象中这种方法经常使用,可以避免书写过多的引用文件,同时也使整个系统更加灵活。
二、spl_autoload_register()
<?
function loadprint( $class ) { |
$file = $class . ‘.class.php‘ ; |
spl_autoload_register( ‘loadprint‘ ); |
?>
将__autoload换成loadprint函数。但是loadprint不会像__autoload自动触发,这时spl_autoload_register()就起作用了,它告诉PHP碰到没有定义的类就执行loadprint()。
spl_autoload_register() 调用静态方法
<?
public static function loadprint( $class ) { |
$file = $class . ‘.class.php‘ ; |
spl_autoload_register( array ( ‘test‘ , ‘loadprint‘ ) ); |
//另一种写法:spl_autoload_register( "test::loadprint" ); |
?>
详解spl_autoload_register() 与 __autoload
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉:
投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。