3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler('myerrorhandler'); set_exception_handler('myexceptionhandler'); function myfunc(stdClass $a) {} function myerrorhandler($errno, $errstr, $errfile, $errline, $errcontext) { echo "Error handler\n$errno\n$errstr\n"; } function myexceptionhandler($e) { echo "Exception handler\n";var_dump($e); } myfunc('iamnotaclass');
Output for git.master, git.master_jit, rfc.property-hooks
Exception handler object(TypeError)#1 (7) { ["message":protected]=> string(97) "myfunc(): Argument #1 ($a) must be of type stdClass, string given, called in /in/MOJuD on line 12" ["string":"Error":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/MOJuD" ["line":protected]=> int(4) ["trace":"Error":private]=> array(1) { [0]=> array(4) { ["file"]=> string(9) "/in/MOJuD" ["line"]=> int(12) ["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:
51.13 ms | 402 KiB | 8 Q