ID:               28058
 Updated by:       [EMAIL PROTECTED]
 Reported By:      alex_boyer at hotmail dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Zend Engine 2 problem
 Operating System: Windows 2000 Pro
 PHP Version:      5.0.0RC1
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip


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

[2004-04-19 14:52:44] alex_boyer at hotmail dot com

Description:
------------
__autoload is called for every class declaration that extends a parent
class, even if the parent declaration file is included.

Reproduce code:
---------------
index.php:
require_once "b.php";
function __autoload($theclass){
        echo "Auto load\n";
        require_once($theclass.".php");
}
$obj = new b();
$obj->hello();
b.php:
require_once "a.php";
class b extends a{
        function hello() { echo "B";}
}
a.php:
class a{
        function hello() {echo "A";}
}


Expected result:
----------------
B

Actual result:
--------------
Auto load
B


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


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

Reply via email to