3v4l.org

run code in 300+ PHP versions simultaneously
<?php if(isset($_GET['log'])) { set_error_handler( function( $errno, $errstr, $errfile, $errline ) { $error_types = array( E_ERROR => 'Error', E_WARNING => 'Warning', E_NOTICE => 'Notice', E_USER_ERROR => 'User error', E_USER_WARNING => 'User warning', E_USER_NOTICE => 'User notice', E_STRICT => 'Strictness notice', E_RECOVERABLE_ERROR => 'Recovarable error', E_DEPRECATED => 'Deprecation notice', E_USER_DEPRECATED => 'User deprecation notice' ); $file = fopen( __DIR__ . '/errors.log', 'a' ); fwrite( $file, '' . 'Date: ' . date( DATE_W3C ) . PHP_EOL . 'Type: ' . (isset( $error_types[$errno] ) ? $error_types[$errno] : $errno) . PHP_EOL . 'Message: ' . $errstr . PHP_EOL . 'Location: ' . $errfile . ' on line ' . $errline . PHP_EOL . PHP_EOL ); fclose( $file ); } ); }
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:
37.85 ms | 401 KiB | 8 Q