Detailed usage of try {} catch {} in PHP _ PHP Tutorial

Source: Internet
Author: User
Detailed usage of try {} catch {} in PHP. In try {...} catch (Exception $ e ){...} try {} catch {} in PHP is exception handling. put the code to be executed into the TRY block. if an exception occurs in a statement during the code execution

Try
{//...}
Catch (Exception $ e)
{//...}

Try {} catch {} in PHP is exception handling.

The code to be executed is placed in the TRY block. if an exception occurs in a statement during code execution, the program jumps directly to the CATCH block, and the error information and display are collected by $ e.

Try {} catch {} statement in PHP

To further handle exceptions, we need to use try {} catch {} in PHP to include Try statements and at least one catch statement. Any code that calls a method that may throw an exception should use the try statement. Catch statements are used to handle exceptions that may be thrown. The following shows how to handle the Exception thrown by getCommandObject:

 
 
  1. < ?php
  2. try {
  3. $mgr = new CommandManager();
  4. $cmd = $mgr->getCommandObject("realcommand");
  5. $cmd->execute();
  6. } catch (Exception $e) {
  7. print $e->getMessage();
  8. exit();
  9. }
  10. ?>

As you can see, by combining the throw keyword with try {} catch {} in PHP, we can avoid the error of marking the value returned by the "pollution" class method. "Exception" is a built-in PHP type that is different from any other object and will not be confused.

If an exception is thrown, the script in the try statement stops execution and immediately redirects to the script in the catch statement.

If an exception is thrown but not captured, a fatal error occurs.


Please try {//...} catch (Exception $ e ){//...} try {} catch {} in PHP is exception handling. put the code to be executed into the TRY block. if an exception occurs in a statement during the code execution, then...

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.