3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(-1); class GrandMother { function f() { echo __METHOD__; } } class Mother extends GrandMother { function f() { echo __METHOD__; } } class Child extends Mother { function f() { Mother::f(); } } $c = new Child; $c->f();

preferences:
53.52 ms | 402 KiB | 5 Q