ID: 11073 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Class/Object related Operating System: Linux SuSE 6.4 PHP Version: 4.0.4pl1 New Comment:
Works for me with PHP 4.1.0RC1. Try from: http://www.php.net/~ssb/php-4.1.0RC1.tar.gz --Jani Previous Comments: ------------------------------------------------------------------------ [2001-05-23 21:47:24] [EMAIL PROTECTED] test1.php contains : <?php class a { function MyFunct($i, $j, $k='defaut_k') { echo " in a "; } } ?> test2.php contains <?php include("test1.php"); class b extends a { function MyFunct($i, $j, $k='defaut_k') { echo " in b "; parent::MyFunct($i,$j,$k); // does not work // got : Fatal error: No parent class available in this context in ... a::MyFunct($i,$j,$k); // works } } whereas first example presented here works fine for me : http://www.php.net/manual/en/keyword.parent.php ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=11073&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]