ID: 28058 User updated by: alex_boyer at hotmail dot com Reported By: alex_boyer at hotmail dot com -Status: No Feedback +Status: Closed Bug Type: Zend Engine 2 problem Operating System: Windows 2000 Pro PHP Version: 5.0.0RC1 New Comment:
It works with new CVS version. Previous Comments: ------------------------------------------------------------------------ [2004-04-27 01:00:03] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2004-04-19 20:34:50] [EMAIL PROTECTED] 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 ------------------------------------------------------------------------ [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