From:             [EMAIL PROTECTED]
Operating system: Linux SuSE 6.4
PHP version:      4.0.4pl1
PHP Bug Type:     Class/Object related
Bug description:  parent::Function() does not work if parent class is included

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