Write a PHP-level error handling PHP concurrent processing PHP queue processing high concurrent PHP processing JSON number

Source: Internet
Author: User
Data-id= "1190000005075466" data-license= "nd" >

in PHP.

try{}catch(Exception $e){}

is not omnipotent, because he can only catch exceptions, and not be able to capture the PHP level of error.

If you want to capture PHP-level errors, and like exception handling, the following are the practices:

set_error_handler(function($errno, $errmsg) {    var_dump($errno, $errmsg);    // Any other Do});

Error attempt:

$a = 1/0;

Get results:

int(2) string(16) "Division by zero"

Reference:

  1. A question and answer on this site

The above describes a PHP level error handling methods, including the processing method, PHP content, I hope that the PHP tutorial interested in a friend helpful.

  • 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.