From:             dweller at devonweller dot com
Operating system: Mac OS X
PHP version:      5.2.0
PHP Bug Type:     SPL related
Bug description:  spl_autoload_register with 2 instances of the same class

Description:
------------
When using spl_autoload_register with two instances of the same class
name, the autoload stack only stores one function callback instead of
two.


Reproduce code:
---------------
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());


Expected result:
----------------
Array
(
    [0] => Array
        (
            [0] => MyAutoloader
            [1] => autoload
        )

    [1] => Array
        (
            [0] => MyAutoloader
            [1] => autoload
        )

)


Actual result:
--------------
Array
(
    [0] => Array
        (
            [0] => MyAutoloader
            [1] => autoload
        )

)


-- 
Edit bug report at http://bugs.php.net/?id=40091&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=40091&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=40091&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=40091&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=40091&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=40091&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=40091&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=40091&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=40091&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=40091&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=40091&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=40091&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=40091&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=40091&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=40091&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=40091&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=40091&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=40091&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=40091&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=40091&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=40091&r=mysqlcfg

Reply via email to