PHP try-catch statement using tips _php Tips

Source: Internet
Author: User

PHP Try-catch Statement
To further handle the exception, we need to use the Try-catch statement----include a try statement and at least one catch statement. Any code that invokes a method that might throw an exception should use a try statement. Catch statements are used to handle exceptions that may be thrown. Here's how we handle the exception thrown by Getcommandobject ():

<?php 
try { 
  $mgr = new Commandmanager (); 
  $cmd = $mgr->getcommandobject ("Realcommand"); 
  $cmd->execute (); 
} catch (Exception $e) { 
  print $e->getmessage (); 
  Exit (); 
>

As you can see, by using the Throw keyword and the try-catch statement together, we can avoid the error marking the value returned by the pollution class method. Because "exception" itself is a type of PHP that is different from any other object, it does not create confusion.

If an exception is thrown, the script in the Try statement stops executing, and then immediately moves to the script in the catch statement.

If the exception is thrown and is not captured, a fatal error is generated.

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.