ID: 11073
Updated by: sander
Reported By: [EMAIL PROTECTED]
Old Status: Feedback
Status: Closed
Bug Type: Class/Object related
Operating System: Linux SuSE 6.4
PHP Version: 4.0.4pl1
New Comment:

No feedback. Closing.

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

[2001-10-21 19:24:08] [EMAIL PROTECTED]

Works for me with PHP 4.1.0RC1.
Try from: http://www.php.net/~ssb/php-4.1.0RC1.tar.gz

--Jani


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

[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]

Reply via email to