<?php class A { public final static function test() { print __CLASS__ . PHP_EOL; } } class B extends A { public static function test() { print __CLASS__ . PHP_EOL; } } A::runSelf(); A::runStatic(); B::runSelf(); B::runStatic();
You have javascript disabled. You will not be able to edit any code.