Php custom error handling usage instance, php custom usage instance _ PHP Tutorial

Source: Internet
Author: User
Examples of php custom error handling usage and php custom usage. Php custom error handling usage example, php custom usage example this article describes php custom error handling usage. Share it with you for your reference. For details, see phperror_repo php custom error handling usage example and php custom usage example.

This example describes how to handle php custom errors. Share it with you for your reference. The details are as follows:

<?phperror_reporting(E_ALL);function ErrHandler($errorno, $errorstr, $errorfile, $errorline){  $display = true;  $notify = false;  $halt_script = false;  $error_msg = "
The $errorno error is occurring at $errorline in $errorfile
"; switch($errorno) { case E_USER_NOTICE: case E_NOTICE: $halt_script = false; $notify = true; $label = "Notice"; break; case E_USER_WARNING: case E_WARNING: $halt_script = false; $notify = true; $label = "Warning"; break; case E_USER_ERROR: case E_ERROR: $label = "Fatal Error"; $notify=true; $halt_script = false; break; case E_PARSE: $label = "Parse Error"; $notify=true; $halt_script = true; break; default: $label = "Unknown Error"; break; } if($notify) { $msg = $label . $error_msg; echo $msg; } if($halt_script) exit -1;}$error_handler = set_error_handler("ErrHandler");echo "
Using Custom Error Handler
";trigger_error("
Error caused by E_USER_NOTICE
", E_USER_NOTICE);trigger_error("
Error caused by E_USER_WARNING
", E_USER_WARNING);trigger_error("
Error caused by E_USER_ERROR
", E_USER_ERROR);trigger_error("
Error caused by E_PARSE
", E_PARSE);?>

I hope this article will help you with php programming.

Examples in this article describe php custom error handling usage. Share it with you for your reference. Details: phperror_repo...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.