dwh/error_handler.php
Daeng Deni Mardaeni 5321a5434b first commit
2023-10-02 17:26:17 +07:00

14 lines
406 B
PHP

<?php
// set the user error handler method to be error_handler
set_error_handler('error_handler', E_ALL);
// error handler function
function error_handler($errNo, $errStr, $errFile, $errLine) {
// clear any output that has already been generated
if (ob_get_length())
ob_clean();
// output the error message
echo null;
// prevent processing any more PHP scripts
//exit;
}
?>