3v4l.org

run code in 300+ PHP versions simultaneously
<?php convertPhpErrorsToExceptions(); $array = ['hi' => 'dsa']; echo $array['unknown']; function convertPhpErrorsToExceptions() { static $isNotLoaded = true; if ($isNotLoaded) { set_error_handler('phpErrorToException'); $isNotLoaded = false; } } function phpErrorToException($severity, $message, $filename, $lineno) { if (error_reporting() & $severity) { throw new \ErrorException($message, 0, $severity, $filename, $lineno); } }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ErrorException: Undefined array key "unknown" in /in/emBU0:5 Stack trace: #0 /in/emBU0(5): phpErrorToException(2, 'Undefined array...', '/in/emBU0', 5) #1 {main} thrown in /in/emBU0 on line 5
Process exited with code 255.

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.05 ms | 401 KiB | 8 Q