3v4l.org

run code in 300+ PHP versions simultaneously
<?php $foo = <<<PHP \$LOST_VARIABLE = 42; 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! isset($LOST_VARIABLE) // where is my variable );

preferences:
24.25 ms | 402 KiB | 5 Q