Exception handling-PHP manual notes

Source: Internet
Author: User
: This article mainly introduces exception handling-PHP manual notes. if you are interested in PHP tutorials, refer to them. Exceptions in PHP code can be throwThe statement is thrown and catchStatement capture. All codes that require exception handling must be placed in tryWithin the code block, each tryAt least one corresponding catch. When an exception is thrown, the code behind the code block will not continue to be executed. in this case, PHP will try to find the first matching code. catch. Of course, PHP allows catchThrown again in the code block throwException. If an exception is not caught and is not used set_exception_handler()PHP will produce a serious error.

Here is an example of abnormal use.


  ';    echo inverse(0) . '
';} catch(Exception $e) { echo 'Caught exception: ' . $e->getMessage() . '
';}echo 'hello';

There is also an example of exception nesting.


  getMessage());        }    }}$foo = new Test;$foo->testing();

You can use a custom exception handling class to extend the PHP built-in exception handling class.

(Full text)

The above introduces the exception handling-PHP manual notes, including the content, and hope to be helpful to friends who are interested in the PHP Tutorial.

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.