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 function test(array $a){ return __METHOD__; } } class B extends A { const A = 15; public function test($a){ return __METHOD__; } } $v = new B(); var_dump($v->test(array(), ''));

preferences:
49.81 ms | 402 KiB | 5 Q