<?php error_reporting(-1); set_error_handler(function() { echo "Caught an error:\n"; print_r(func_get_args()); }, -1); try { new DateTimeZone("Twilight zone"); } catch (Exception $e) { // ignore } echo "Checking the last error:\n"; print_r(error_get_last());
You have javascript disabled. You will not be able to edit any code.