<?php class foo { private static $foo = true; public static function test() { var_dump(isset(static::$foo)); } } class none extends foo { } class overmethod extends foo { public static function test() { var_dump(isset(static::$foo)); } } class overprop extends foo { private static $foo = null; } none::test(); overmethod::test(); overprop::test();
You have javascript disabled. You will not be able to edit any code.