PHP Try, throw and catch Simple usage _ PHP Tutorial

Source: Internet
Author: User
PHP's Try, throw, and catch Simple usage. PHP Try, throw, and catch Simple usage this article briefly records the usage of Try, throw, and catch in php, and has time to make a detailed analysis later. Try-use the exception function PHP's Try, throw, and catch Simple usage

This article briefly records the usage of Try, throw, and catch in php, and then provides a detailed explanation later.

Try-the abnormal function should be located in the "try" code block. If no exception is triggered, the code continues as usual. However, if an exception is triggered,

Exception.

Throw-This specifies how to trigger an exception. Each "throw" must correspond to at least one "catch"

The Catch-"catch" code block captures exceptions and creates an object containing exception information.

Let's trigger an exception:

 1) {throw new Exception ("Value must be 1 or below");} return true;} // trigger an Exception in the "try" code block try {checkNum (2 ); // catch Exception} catch (Exception $ e) {echo 'message :'. $ e-> getMessage ();}

The above code will get an error similar to this:

Message: Value must be 1 or below

Example:

The above code throws an exception and captures it:

Create the checkNum () function. It checks whether the number is greater than 1. If yes, an exception is thrown.

Call the checkNum () function in the "try" code block.

An exception in the checkNum () function is thrown.

The "catch" code block receives the exception and creates an object ($ e) containing the exception information ).

Call $ e-> getMessage () from this exception object to output the error message from this exception.

Catch principle. you can set a top-level exception processor to handle missed errors.

Articles you may be interested in
  • Simple example of php getting webpage content through socket
  • Php prompts PHP Warning: date (): It is not safe to rely on the... solution to the error
  • Usage of several keywords such as $ this, static, final, const, and self in php
  • PhpMyAdmin Cannot start session without errors error solution
  • Install and configure memcache in windows
  • SMTP Error cocould not connect to SMTP host. send fail
  • Comparison of file_get_contents with curl in PHP
  • Principles and tutorials of PHP connection and Memcached manipulation

Summary, throw, and catch Simple usage this article briefly records the usage of Try, throw, and catch in php, and will have time to make a detailed analysis later. Try-use the exception letter...

Related Article

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.