3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Something { public function run() { // instace method called statically. Crazy::doSomething(); } public function log($var) { echo $var; } } class Crazy { public function doSomething() { $this->log('Hello World'); } } error_reporting(0); (new Something)->run(); error_reporting(E_ALL | E_STRICT); (new Something)->run();

preferences:
37.81 ms | 402 KiB | 5 Q