/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
spl
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/ext/spl/tests/bug40091.phpt
--TEST-- Bug #40091 (issue with spl_autoload_register() and 2 instances of the same class) --FILE-- <?php class MyAutoloader { function __construct($directory_to_use) {} function autoload($class_name) { // code to autoload based on directory } } $autloader1 = new MyAutoloader('dir1'); spl_autoload_register(array($autloader1, 'autoload')); $autloader2 = new MyAutoloader('dir2'); spl_autoload_register(array($autloader2, 'autoload')); print_r(spl_autoload_functions()); ?> --EXPECT-- Array ( [0] => Array ( [0] => MyAutoloader Object ( ) [1] => autoload ) [1] => Array ( [0] => MyAutoloader Object ( ) [1] => autoload ) )
Copyright ©2k19 -
Hexid
|
Tex7ure