3v4l.org

run code in 300+ PHP versions simultaneously
<?php class AppException extends Exception { } function error_handler($errno, $errstr, $errfile, $errline) { throw new AppException($errstr, $errno); } function exception_handler($exception) { /*$min = ...; $max = ...; if ($exception->getCode() >= $min && $exception->getCode() <= $max) { // log exception }*/ } set_error_handler('error_handler'); set_exception_handler('exception_handler'); function my_function($param1, $param2) { // do something great } try { my_function('only_one_param'); } catch (AppException $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()); }*/
Output for git.master, git.master_jit, rfc.property-hooks

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.6 ms | 401 KiB | 8 Q