php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #47699 autoload and late static binding
Submitted: 2009-03-18 00:41 UTC Modified: 2009-03-25 10:39 UTC
From: rayro at gmx dot de Assigned: dmitry (profile)
Status: Closed Package: Class/Object related
PHP Version: 5.3.0beta1 OS: XP
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rayro at gmx dot de
New email:
PHP Version: OS:

 

 [2009-03-18 00:41 UTC] rayro at gmx dot de
Description:
------------
spl_autoload_register does not work with lsb/get_called_class()

Reproduce code:
---------------
namespace test;
class A {
	static function test($v='') {
		var_dump(get_called_class());
	}
}
class B extends A {
}
B::test();
spl_autoload_register(__NAMESPACE__.'\B::test');
new X();

Expected result:
----------------
string(6) "test\B"
string(6) "test\B"

Fatal error: Class 'test\X' not found in ... on line ...

Actual result:
--------------
string(6) "test\B"
bool(false)

Fatal error: Class 'test\X' not found in ... on line ...

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-03-25 10:39 UTC] dmitry@php.net
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.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Mon Jun 16 13:01:35 2025 UTC