test script for bug #61697

This commit is contained in:
Xinchen Hui 2012-07-18 19:19:31 +08:00
parent f13288de96
commit 8238c6a4c8

View File

@ -0,0 +1,26 @@
--TEST--
Bug #61697 (spl_autoload_functions returns lambda functions incorrectly)
--XFAIL--
Bug #61697 not fixed yet
--FILE--
<?php
function f1($class) { echo "f1: [[$class]]\n"; }
function f2($class) { echo "f2: [[$class]]\n"; }
spl_autoload_register('f1');
spl_autoload_register('f2');
spl_autoload_register(create_function('$class', 'echo "cf1: [[$class]]\n";'));
spl_autoload_register(create_function('$class', 'echo "cf2: [[$class]]\n";'));
foreach (spl_autoload_functions() AS $func)
{
spl_autoload_unregister($func);
}
print_r(spl_autoload_functions());
?>
--EXPECTF--
Array
(
)