PHP exception Handling Exception class, exception handling exception_php tutorial

Source: Internet
Author: User
Tags php exception handling stack trace

PHP exception Handling Exception class, exception handling Exception


An exception (Exception) is used to change the normal process of a script when a specified error occurs. What is an exception? PHP 5 provides a new approach to object-oriented error handling. Exception handling is used to change the normal process of a script when a specified error (exception) condition occurs. This condition is called an exception. Typically occurs when an exception is triggered: The current code state is switched to the predefined exception handler function according to the situation, the processor may restart executing code from the saved code State, terminate the script execution, or continue executing the script from another location in the code we will show different error handling methods: Basic use of exceptions create custom exception handlers multiple exception re-throw exception set top-level exception handler

Basic use of exceptions when an exception is thrown, the subsequent code does not continue, and PHP tries to find a matching "catch" block of code. If the exception is not captured and does not use Set_exception_handler () for appropriate processing, a serious error (fatal error) will occur, and an error message "Uncaught exception" (uncaught exception) is output. Let's try to throw an exception without catching it:

1)  {  throw new Exception ("Value must be 1 or below");  } return true;} Trigger Exceptionchecknum (2);? >

The above code will get an error like this: Fatal error:uncaught exception ' exception ' with message ' Value must is 1 or below ' in C:\webfolder\tes T.php:6 Stack Trace: #0 C:\webfolder\test.php: Checknum (+) #1 {main} thrown in C:\webfolder\test.php on line 6 Try, t Hrow and catch to avoid the error in the above example, we need to create the appropriate code to handle the exception. The processing handler should include: try-the function that uses the exception should be in the "Try" code block. If no exception is triggered, the code will continue to execute as usual. However, if an exception is triggered, an exception is thrown. Throw-this specifies how the exception is triggered. Each "throw" must correspond to at least one catch catch-the "catch" code block catches the exception and creates an object containing the exception information

Let's trigger an exception:

1)  {  throw new Exception ("Value must be 1 or below");  } return true;} Triggering an exception in the "try" code block try {checknum (2);//if the exception is thrown, this text would not be shown echo ' If you see this, the Number is 1 or below '; }//catch Exception catch (Exception $e) {echo ' Message: '. $e->getmessage ();}? >

The above code will get a similar error: Message:value must be 1 or below example explanation: The above code throws an exception and captures it:

Create the Checknum () function. It detects if the number is greater than 1. If it is, an exception is thrown. Call the Checknum () function in the "Try" code block. The exception in the Checknum () function is thrown by a "catch" code block that receives the exception and creates an object ($e) that contains the exception information. Output the error message from this exception by calling $e->getmessage () from this exception object

However, to follow the principle that each throw must correspond to a catch, you can set up a top-level exception handler to handle the missing error. Creating a custom Exception class creates a custom exception handler that is very simple. We have simply created a special class that can call its function when an exception occurs in PHP. The class must be an extension of the exception class.

This custom exception class inherits all the properties of the PHP exception class, and you can add custom functions to it. We started to create the exception class:

GetLine (). ' In '. $this->getfile (). ': '. $this->getmessage (). ' was not a valid e-mail address ';  return $ERRORMSG;  } } $email = "someone@example...com"; try {//check if  if (Filter_var ($email, filter_validate_email) = = = FALSE)  {  //throw Exception If email is not valid  throw new Customexception ($email);}  } catch (Customexception $e) {//display custom message echo $e->errormessage ();}? >

This new class is a copy of the old exception class, plus the ErrorMessage () function. Because it is a copy of the old class, it inherits properties and methods from the old class, and we can use the methods of the exception class, such as GetLine (), GetFile (), and GetMessage (). Example explanation: The above code throws an exception and captures it through a custom exception class: The Customexception () class is created as an extension of the old exception class. So it inherits all the properties and methods of the old class. Create the ErrorMessage () function. If the e-mail address is not valid, then the function returns an error message that sets the $email variable to an illegal e-mail address string to execute a "try" block of code, because the e-mail address is not valid, so throw an exception "catch" code block catch exception, and display an error message

Multiple exceptions can use multiple exceptions for a script to detect multiple situations. You can use multiple if: else code block, or a switch code block, or nested multiple exceptions. These exceptions can use different exception classes and return different error messages:

GetLine (). ' In '. $this->getfile (). ': '. $this->getmessage (). ' was not a valid e-mail address '; return $ERRORMSG;}} $email = "someone@example.com"; try {//check if  if (Filter_var ($email, filter_validate_email) = = = FALSE)  {  Throw exception if email is not valid  throw new Customexception ($email),  //check for ' example ' in mail address if (Strpos ($email, "example")!== FALSE)  {  throw new Exception ("$email is an example e-mail");}  catch (Customexception $e) {echo $e->errormessage ();} catch (Exception $e) {echo $e->getmessage ();}? >

Example explanation: The above code tests two conditions, and throws an exception if any of the conditions are not true:

The Customexception () class is created as an extension of the old exception class. So it inherits all the properties and methods of the old class. Create the ErrorMessage () function. If the e-mail address is not valid, the function returns an error message. Executes a "try" block of code that, under the first condition, does not throw an exception. Because e-mail contains the string "Example", the second condition triggers an exception. Catch code block catches exceptions and displays appropriate error messages

If the customexception is not captured and the base exception is tightly captured, the exception is handled there.

To re-throw an exception sometimes, when an exception is thrown, you might want to handle it in a different way than the standard. You can throw an exception again in a "catch" code block. The script should hide the system error from the user. For programmers, system errors may be important, but users are not interested in them. To make it easier for users to use, you can again throw an exception with a friendly message to the user:

GetMessage (). ' is not a valid e-mail address. ';  return $ERRORMSG;  } } $email = "someone@example.com"; try {  //check for "example" in mail address  if (Strpos ($email, "example ")!== FALSE)   {   //throw exception if email is not valid   throw new Exception ($email);   }  } catch (Exception $e)  {  //re-throw Exception  throw new Customexception ($email);}  } catch (Customexception $e) {//display custom message echo $e->errormessage ();}? >

Example explanation: The above code detects if a string "example" is included in the email address. If there is, throw the exception again:

The Customexception () class is created as an extension of the old exception class. So it inherits all the properties and methods of the old class. Create the ErrorMessage () function. If the e-mail address is not valid, the function returns an error message. Set the $email variable to a valid e-mail address, but contains the string "example". The "Try" code block contains another "try" code block so that you can throw the exception again. The exception is triggered because e-mail contains the string "example". Catch catches the exception and re-throws "Customexception". "Customexception" is captured and an error message is displayed. If an exception is not caught in its current "try" code block, it looks for a catch code block at a higher level. Set the top level exception handler (Exception Handler) Set_exception_handler () function to set a user-defined function that handles all uncaught exceptions.

GetMessage ();} Set_exception_handler (' myexception '); throw new Exception (' uncaught exception occurred ');? >

The output of the above code should look like this: Exception:uncaught Exception occurred in the above code, there is no "catch" code block, but the top-level exception handler is triggered. You should use this function to catch all uncaught exceptions.

The exception rule code that requires exception handling should be placed inside a try code block to catch a potential exception. Each try or throw code block must have at least one corresponding catch code block. You can use multiple catch blocks to catch different kinds of exceptions. You can throw (re-thrown) exceptions again in a catch code block within a try code block.

In short: If an exception is thrown, it must be captured.

http://www.bkjia.com/PHPjc/1079206.html www.bkjia.com true http://www.bkjia.com/PHPjc/1079206.html techarticle PHP Exception Handling Exception class, exception handling Exception exception (Exception) is used to change the normal process of a script when a specified error occurs. What is an exception? PHP 5 provides a new ...

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