__autoload tries to load callback'ed self and parent
| Bug #37138 | __autoload tries to load callback'ed self and parent | ||||
|---|---|---|---|---|---|
| Submitted: | 2006-04-19 21:03 UTC | Modified: | 2006-04-20 07:34 UTC | ||
| From: | stronny at celestia dot ru | Assigned: | tony2001 (profile) | ||
| Status: | Closed | Package: | Class/Object related | ||
| PHP Version: | 5.1.2 | OS: | Windows 2000 sp4 | ||
| Private report: | No | CVE-ID: | None | ||
[2006-04-19 21:03 UTC] stronny at celestia dot ru
Description:
------------
Ummm... Sorry if I missed this one as being already submitted.
My __autoload logs the non-existing class calls, so... Maybe you could do something about it... Why should one load self or parent anyway?
Reproduce code:
---------------
function __autoload ($CN) {var_dump ($CN);}
class st {
public static function e () {echo ("EHLO\n");}
public static function e2 () {call_user_func (array ('self', 'e'));}
}
class stch extends st {
public static function g () {call_user_func (array ('parent', 'e'));}
}
st::e ();
st::e2 ();
stch::g ();
Expected result:
----------------
EHLO
EHLO
EHLO
Actual result:
--------------
EHLO
string(4) "self"
EHLO
string(6) "parent"
EHLO
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2006-04-20 07:34 UTC] dmitry@php.net