3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler('myerrorhandler'); function myfunc(stdClass $a) {} function myerrorhandler($errno, $errstr, $errfile, $errline, $errcontext) { echo "Error handler\n$errno\n$errstr\n"; } try { myfunc('iamnotaclass'); } catch (Exception $e) { echo "Exception\n"; var_dump($e); } catch (Throwable $e) { echo "Throwable\n"; var_dump($e); }
Output for git.master, git.master_jit, rfc.property-hooks
Throwable object(TypeError)#1 (7) { ["message":protected]=> string(96) "myfunc(): Argument #1 ($a) must be of type stdClass, string given, called in /in/9Qshj on line 9" ["string":"Error":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/9Qshj" ["line":protected]=> int(3) ["trace":"Error":private]=> array(1) { [0]=> array(4) { ["file"]=> string(9) "/in/9Qshj" ["line"]=> int(9) ["function"]=> string(6) "myfunc" ["args"]=> array(1) { [0]=> string(12) "iamnotaclass" } } } ["previous":"Error":private]=> NULL }

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:
49.09 ms | 402 KiB | 8 Q