- Create function with an exception
- function Checknum ($number)
- {
- if ($number >1)
- {
- throw new Exception ("Value must be 1 or below");
- }
- return true;
- }
- Trigger exception
- Checknum (2);
- ?>
Copy CodeThe 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:
- To create a function that throws an exception
- function Checknum ($number)
- {
- if ($number >1)
- {
- throw new Exception ("Value must be 1 or below");
- }
- return true;
- }
- To trigger an exception in a "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 ';
- }
- Catching exceptions
- catch (Exception $e)
- {
- Echo ' Message: '. $e->getmessage ();
- }
- ?>
Copy CodeThe 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:
- Class Customexception extends Exception
- {
- Public Function ErrorMessage ()
- {
- Error message
- $ERRORMSG = ' Error on line '. $this->getline (). ' In '. $this->getfile ()
- . ': '. $this->getmessage (). ' is 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 ();
- }
- ?>
Copy CodeThis 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 You 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:
- Class Customexception extends Exception
- {
- Public Function ErrorMessage ()
- {
- Error message
- $ERRORMSG = ' Error on line '. $this->getline (). ' In '. $this->getfile ()
- . ': '. $this->getmessage (). ' is 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 ();
- }
- ?>
Copy CodeExample explanation: The above code tests two conditions, and throws an exception if any condition is 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 from 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:
- Class Customexception extends Exception
- {
- Public Function ErrorMessage ()
- {
- Error message
- $ERRORMSG = $this->getmessage (). ' is not a valid e-mail address. ';
- return $ERRORMSG;
- }
- }
- $email = "someone@example.com";
- Try
- {
- 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 ();
- }
- ?>
Copy CodeExample explanation: The above code detects if a string "example" is included in the email address. If so, throws 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. Setting the top level exception processor (top Exception Handler) The Set_exception_handler () function sets a user-defined function to handle all uncaught exceptions.
- function MyException ($exception)
- {
- echo "Exception: ", $exception->getmessage ();
- }
- Set_exception_handler (' myexception ');
- throw new Exception (' uncaught Exception occurred ');
- ?>
Copy CodeThe 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. Source: http://bbs.it-home.org/w3school/php/php_exception.html Instance:
- function Throwtest ($data)
- {
- Try
- {
- if (!is_array ($data) | | emptyempty ($DATA))
- {
- throw new Exception (' The type of the data is not an array ', 445);
- }
- Echo (' Finish in order to test!! ');
- }
- catch (Exception $e)
- {
- /*echo ' error message: ', $e->getmessage (), '
';//error message
- Echo '
Error code: ', $e->getcode (), ' ';//error code
- Echo '
Error file: ', $e->getfile (), ' ';//Error file
- Echo '
Error line number: ', $e->getline (), ' ';//Error line number
- Echo '
The error message is shown in an array: ', Print_r ($e->gettrace ()), ' ';//The error message is shown in an array
- Echo '
The error message is displayed as a string: ', $e->gettraceasstring (), ' ';//The error message is displayed as a string */
- echo $e->getmessage (), '
';//error message
- Echo '
', $e->gettraceasstring (), ' ';//The error message is displayed as a string
- Exit
- }
- }
- $data =array ("111", "33333"); Normal test
- $data = "8129233"; Anomaly Testing
- Throwtest ($data);
- ?>
Copy CodeYou may be interested in the article: Using PHP Exception Handling Class Exception example PHP5 exception handling, error throwing and callback functions PHP exception handling, error throwing and error callback function a simple PHP custom exception class to learn PHP error and exception settings |