3v4l.org

run code in 300+ PHP versions simultaneously
<?php function handleError( $errno, $errstr, $errfile, $errline ) { if ( E_RECOVERABLE_ERROR === $errno ) { echo $errstr; } } set_error_handler( 'handleError' ); try{ $g = new Generator; $g->whatami = "a highly dubious property"; } catch (Exception $e) { $e->getMessage(); } finally { echo "\nTidying up loose ends ... "; }

preferences:
35.82 ms | 402 KiB | 5 Q