<?php class A { const z = "fromA"; public static function x() { static::y(); } private static function y() { var_dump(static::z); } } class B extends A { const z = "fromB"; } B::x();
You have javascript disabled. You will not be able to edit any code.