mirror of
https://github.com/php/php-src.git
synced 2024-12-02 06:13:40 +08:00
44 lines
809 B
PHP
44 lines
809 B
PHP
--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());
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[0] => Array
|
|
(
|
|
[0] => MyAutoloader Object
|
|
(
|
|
)
|
|
|
|
[1] => autoload
|
|
)
|
|
|
|
[1] => Array
|
|
(
|
|
[0] => MyAutoloader Object
|
|
(
|
|
)
|
|
|
|
[1] => autoload
|
|
)
|
|
|
|
)
|
|
===DONE===
|