Add this to the top of your PHP program.
function errHandle($errNo, $errStr, $errFile, $errLine) { $msg = "$errStr in $errFile on line $errLine"; if ($errNo == E_NOTICE || $errNo == E_WARNING) { throw new ErrorException($msg, $errNo); } else { echo $msg; } } set_error_handler('errHandle');