<?php class B { private $x = 'x'; function foo() { return $this->x; } } class C extends B { private $x = 'y'; function foo() { return $this->x . parent::foo(); } } $c = new C; var_export($c->foo());
You have javascript disabled. You will not be able to edit any code.