3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface I { const C = 12; public static function test(array $a); } class A { const A = 14; protected static $var = 17; public static function test(array $a){ return __METHOD__; } } class B extends A { const A = 15; public static function test(array $a, $b){ return __METHOD__; } } var_dump(B::test(array(), ''));

preferences:
34.92 ms | 402 KiB | 5 Q