3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* final public ExceptionException::getPrevious ( void ) */ error_reporting(E_ALL); function exception_error_handler($errno, $errstr, $errfile, $errline ) { throw new ErrorException($errstr, '00007600', $errno, $errfile, $errline, new Exception); } set_error_handler("exception_error_handler"); try { echo $x; } catch(Exception $e) { var_dump($e->__toString()); }

preferences:
45.08 ms | 402 KiB | 5 Q