3v4l.org

run code in 300+ PHP versions simultaneously
<?php $foo = <<<PHP return; class Foo { public function foo() { // throw notice about deprecated constructor } } PHP; set_error_handler(function($errno, $errstr) { throw new Exception($errstr, $errno); // convert error to exception }); try { eval($foo); } catch (Exception $e) { printf("error %d with message: %s\n", $e->getCode(), $e->getMessage()); } var_dump( class_exists('foo') // exists! );

preferences:
50.57 ms | 402 KiB | 5 Q