3v4l.org

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

preferences:
42.32 ms | 402 KiB | 5 Q