<?php class A { private $foo = 1; public function getFoo() { return $this->foo; } } class B extends A { public $foo = 2; } var_dump((new A)->getFoo(), (new B)->getFoo());
You have javascript disabled. You will not be able to edit any code.