spl_autoload_functions

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

spl_autoload_functions返回所有已注册的 __autoload() 函数

描述

spl_autoload_functions(): array

获取所有已注册的 __autoload() 函数。

参数

此函数没有参数。

返回值

一个包含所有已注册 __autoload 函数的 array。如果未注册任何函数,或者自动加载队列未激活,则返回值将为空数组。

变更日志

版本 描述
8.0.0 返回值已更新为始终为 array;以前此函数返回 false 如果自动加载队列未激活。
添加注释

用户贡献的注释 2 条注释

dantedantas at gmail dot com
7 年前
如果您使用匿名函数,它将返回预期的对象。

spl_autoload_register(function ($myclass){
$keyclass = substr($myclass, 0, 1);

switch ($keyclass) {
case 'c'
if (file_exists("class".DIRECTORY_SEPARATOR.$myclass.".php") === true)
require_once ("class".DIRECTORY_SEPARATOR.$myclass.".php");
break;
case 'i'
if (file_exists("interface".DIRECTORY_SEPARATOR.$myclass.".php") === true)
require_once ("interface".DIRECTORY_SEPARATOR.$myclass.".php");
break;
case 'a'
if (file_exists("abstract".DIRECTORY_SEPARATOR.$myclass.".php") === true)
require_once ("abstract".DIRECTORY_SEPARATOR.$myclass.".php");
break;
default
if (file_exists($myclass.".php") === true)
require_once ($myclass.".php");
}

/******************************/

var_dump(spl_autoload_functions()) 返回

array(1) {
[0]=>
object(Closure)#1 (1) {
["parameter"]=>
array(1) {
["$myclass"]=>
string(10) "<required>"
}
}
}
124307954 at qq dot com
5 年前
<?php
spl_autoload_register
(function ($name) {
echo
"Want to load $name.\n";

});

spl_autoload_register(function($className) {
var_dump($className);
});

function
unregister($className) {
var_dump($className.' i will be the first');
}

spl_autoload_register('unregister');

var_dump(spl_autoload_functions());

===================

array(
3) {
[
0]=>
object(Closure)#1 (1) {
["parameter"]=>
array(
1) {
[
"$name"]=>
string(10) "<required>"
}
}
[
1]=>
object(Closure)#2 (1) {
["parameter"]=>
array(
1) {
[
"$className"]=>
string(10) "<required>"
}
}
[
2]=>
string(10) "unregister"
}
To Top