3v4l.org

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

preferences:
39.2 ms | 402 KiB | 5 Q