3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL | E_STRICT); class Super { public function foo($argument) { echo $argument; } } class Child extends Super { public function foo() { parent::foo('bar'); } } $child = new Child(); $child->foo();

preferences:
33.38 ms | 402 KiB | 5 Q