3v4l.org

run code in 300+ PHP versions simultaneously
<?php function exception_error_handler($errno, $errstr, $errfile, $errline ) { throw new ErrorException($errstr, 0, $errno, $errfile, $errline); } set_error_handler("exception_error_handler"); function exception_handler($exception) { /*$min = ...; $max = ...; if ($exception->getCode() >= $min && $exception->getCode() <= $max) { // log exception }*/ } set_exception_handler('exception_handler'); function my_function($param1, $param2) { // do something great } try { my_function('only_one_param'); } catch (Exception $exception) { echo $exception->getMessage(); } /* throw new MyException('This is a really bad error', 123); 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('jjj')); } set_error_handler("exception_error_handler"); try { echo $x; } catch(Exception $e) { var_dump($e->getPrevious()); }*/

preferences:
45.44 ms | 402 KiB | 5 Q