From: [EMAIL PROTECTED]
Operating system: Red Hat
PHP version: 4.0.4pl1
PHP Bug Type: Class/Object related
Bug description: May a feature to add?
Hi,
here is a tricky thing using the parent:: keyword:
There seems to be no way to call a parent function out of a
parent function!
<?php
class test {
function test1(){
echo "parent:test1<br>";
}
function test2(){
echo "parent:test2<br>";
$this->test1();
}
}
class sub extends test {
function test1(){
echo "sub:test1<br>";
}
function test2(){
echo "sub:test2<br>";
parent::test2();
}
}
$a = new sub();
$a->test2();
?>
returns:
sub:test2
parent:test2
sub:test1
Greetings,
Alex
--
Edit bug report at: http://bugs.php.net/?id=12850&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]