<?php class Foo { static $bar = 'baz'; } class FortyTwo extends Foo { function test() { var_dump(self::$bar); } } (new FortyTwo)->test();
You have javascript disabled. You will not be able to edit any code.