3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(0); 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'); } } (new Something)->run();

preferences:
49.42 ms | 402 KiB | 5 Q