<?php class Base { private $prop = 'parent-prop'; public function baseProp() { return $this->prop; } } class Child extends Base { private $prop = 'child-prop'; public function childProp() { return $this->prop; } } $obj = new Child; var_dump($obj->baseProp(), $obj->childProp());
You have javascript disabled. You will not be able to edit any code.