3v4l.org

run code in 300+ PHP versions simultaneously
<?php function customErrorHandler($errno, $errstr, $errfile, $errline) { if (strpos($errstr, 'Undefined array key') !== false) { return true; } return false; } set_error_handler("customErrorHandler", E_WARNING); $hello = []; echo $hello["var"];

preferences:
31.24 ms | 405 KiB | 5 Q