call A::operation from within class B, you would use
parent:operation();
I should call parent:operation() inside the class B inside the funcion operation
I suppose is work like this
class A {
public $attribute = 'default value';
function operation() {
echo 'Something<br />';
echo 'The value of $attribute is '. $this->attribute.'<br />';
}
}
class B extends A {
public $attribute = 'different value';
function operation(){
echo 'Something else<br />';
echo 'The value of $attribute is ' . $this->attribute.'<br />';
parent::operation();
}
}
$a = new A();
$a->attribute;
$a->operation();
$b = new B();
$b->attribute;
$b->operation();