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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Fri May 17 21:01:33 2024 UTC