3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* getMessage ( void ) final public ExceptionException::getPrevious ( void ) final public stringException::getFile ( void ) final public arrayException::getTrace ( void ) final public stringException::getTraceAsString ( void ) public string Exception::__toString ( void ) final private voidException::__clone ( void ) */ error_reporting(E_ALL); function exception_error_handler($errno, $errstr, $errfile, $errline ) { throw new ErrorException($errstr, '000076', $errno, $errfile, $errline); } set_error_handler("exception_error_handler"); try { echo $x; } catch(Exception $e) { echo $e->getCode(); }

preferences:
34.85 ms | 402 KiB | 5 Q