<?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"];
You have javascript disabled. You will not be able to edit any code.