ID:               44144
 User updated by:  [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Closed
 Bug Type:         SPL related
 Operating System: Irrelevant
 PHP Version:      5.3CVS-2008-02-18 (CVS)
 Assigned To:      colder
 New Comment:

Thanks for the fix. Do you think, by any chance, we can sneak this into
PHP 5.2, or is that impossible?


Previous Comments:
------------------------------------------------------------------------

[2008-02-29 13:48:41] [EMAIL PROTECTED]

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.



------------------------------------------------------------------------

[2008-02-18 02:07:06] [EMAIL PROTECTED]

Description:
------------
spl_autoload_functions() should return object instances, not class
names, when appropriate.

Reproduce code:
---------------
<?php
class Foo {
  public function nonstaticMethod() {}
}
$foo = new Foo;
spl_autoload_register(array($foo, 'nonstaticMethod'));
$funcs = spl_autoload_functions();
print_r((int) is_object($func[0][0]));

Expected result:
----------------
1

Actual result:
--------------
0


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=44144&edit=1

Reply via email to