3v4l.org

run code in 300+ PHP versions simultaneously
<?php function exception_error_handler($errno, $errstr, $errfile, $errline ) { throw new Exception('Hello world'); } set_error_handler("exception_error_handler"); try { // try loading a file that does not have exif data: $results = @require 'does-not-exist.php'; } catch (Exception $e) { echo $e->getMessage(); // "We never get here..." };

preferences:
60.2 ms | 402 KiB | 5 Q