mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
71 lines
1.2 KiB
PHP
71 lines
1.2 KiB
PHP
--TEST--
|
|
SPL: spl_autoload_functions()
|
|
--SKIPIF--
|
|
<?php
|
|
if (spl_autoload_functions() !== false) die('skip __autoload() registered by php.ini');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
function SplAutoloadTest1($name) {}
|
|
function SplAutoloadTest2($name) {}
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_register();
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_register('SplAutoloadTest1');
|
|
spl_autoload_register('SplAutoloadTest2');
|
|
spl_autoload_register('SplAutoloadTest1');
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_unregister('SplAutoloadTest1');
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_unregister('spl_autoload_call');
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_register();
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
spl_autoload_unregister('spl_autoload');
|
|
|
|
var_dump(spl_autoload_functions());
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
bool(false)
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "spl_autoload"
|
|
}
|
|
array(3) {
|
|
[0]=>
|
|
string(12) "spl_autoload"
|
|
[1]=>
|
|
string(16) "SplAutoloadTest1"
|
|
[2]=>
|
|
string(16) "SplAutoloadTest2"
|
|
}
|
|
array(2) {
|
|
[0]=>
|
|
string(12) "spl_autoload"
|
|
[1]=>
|
|
string(16) "SplAutoloadTest2"
|
|
}
|
|
bool(false)
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "spl_autoload"
|
|
}
|
|
bool(false)
|
|
===DONE===
|