__autoload()和spl_autoload_register()

一、__autoload()

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

	<?php
	class AutoLoad {
		 function getAoto() {
		 	echo 'hello world';
		 }
	}
	

index.php:

	<?php
	function __autoload( $classname ) {
		 $file = $classname . '.php';
		 if ( is_file($file) ) {
		 	require_once($file);
		 }
	}
	$obj = new AutoLoad ();
	$obj->getAoto();

运行index.php后正常输出hello world。在index.php中实例化AutoLoad如果文件中找不到这个类会自动调用__autoload()来把AutoLoad 作为参数传入自动加载的方法中然后在进行文件引入。

二、spl_autoload_register()

这个函数与__autoload有与曲同工之妙,不需要封装函数自动加载。spl_autoload_register($params) 加载函数

	<?php
	//1 匿名函数引入
	spl_autoload_register(function($classname){
		 $file = $classname  . '.php';
		 if (is_file($file)) {
		 	require_once($file);
		 }
	});
	//2.或者把函数封装
	function goLoad( $classname ) {
		 $file = $classname . '.php';
		 if (is_file($file)) {
		 	require_once($file);
		 }
	}
	spl_autoload_register( 'goLoad' );
	//3.调用类中的文件加载方法
	class Load{
		function goLoad($classname){
			$file = $classname . '.php';
			 if (is_file($file)) {
			 	require_once($file);
			 }
		}
	}
	spl_autoload_register( [new Load,'goLoad'] );//spl_autoload_register(('Load','goLoad')) 如果是静态类可以这样:spl_autoload_register(("Load::goLoad")) 
	//这里实例化,如果没有定义当前类会自动加载并且引入类文件
	$obj = new AutoLoad ();
	$obj->getAoto();
	
  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值