First of all, you need to know what is a PHP exception?
Exception is used to change the normal flow of the script when a specified error occurs.
PHP 5 provides a new object-oriented error handling method.
Exception handling is used to change the normal flow of the script when a specified error (exception) situation occurs. This situation is called an exception.
When an exception is triggered, what typically happens is:
The current code state is saved
Code execution is switched to a predefined exception handler function
According to the situation, the handler Perhaps restart code execution from a saved code state, terminate script execution, or continue script execution from another location in the code
We will show different error handling methods:
Basic use of exceptions
Create a custom exception handler
Multiple exceptions
Rethrow exceptions
Set a top-level exception handler
Basic usage of exceptions
When an exception is thrown, the code that follows it Execution will not continue and PHP will try to find a matching "catch" block of code.
If the exception is not caught and there is no need to use set_exception_handler() for corresponding processing, then a serious error (fatal error) will occur and "Uncaught Exception" will be output. error message.
Let's try throwing an exception without catching it:
//create function with an exceptionfunction
checkNum($number) {
if($number>1) {
throw new Exception(”Value must be 1 or below ");
} return true;
}
//trigger
exceptioncheckNum(2);
?>
The above code will get something like this An error:
Fatal error: Uncaught exception 'Exception' with message 'Value must be 1 or below' in C:webfoldertest.php:6 Stack trace: #0 C:webfoldertest.php(12): checkNum(28) #1 {main} thrown in C:webfoldertest.php on line 6
Try, throw and catch
To avoid the errors in the above example, we need to create appropriate code to handle exceptions.
Handling handlers should include:
Try - Functions that use exceptions should be inside a "try" block. If no exception is triggered, the code continues execution as usual. But if an exception is triggered, an exception will be thrown.
Throw - This specifies how to trigger the exception. Each "throw" must correspond to at least one "catch"
Catch - The "catch" code block will catch the exception and create an object containing the exception information
Let us trigger an exception:
< ;?php//Create a function that can throw an exception function checkNum($number) { if($number>1) { throw new Exception("Value must be 1 or below"); } return true; }//In The exception is triggered in the "try" code block try { checkNum(2); //If the exception is thrown, this text will not be shown echo 'If you see this, the number is 1 or below'; }//Catch the 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 explanation:
The above code throws an exception and catches it:
Create the checkNum() function. It detects whether the number is greater than 1. If so, throw an exception.
Call the checkNum() function in the “try” code block.
Exception in checkNum() function is thrown
The "catch" code block receives the exception and creates an object ($e) containing the exception information.
By calling $e->getMessage() from this exception object, the error message from the exception is output.
However, in order to follow the principle of "each throw must correspond to a catch", a top-level exception can be set processor to handle missed errors.
Create a custom Exception class
Creating a custom exception handler is very simple. We simply created a specialized class whose functions are called when an exception occurs in PHP. This class must be an extension of the exception class.
This custom exception class inherits all properties of PHP's exception class, and you can add custom functions to it.
We start 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();
}?>
This new class is a copy of the old exception class, plus the errorMessage() function. Just because it is a copy of the old class, it inherits the properties and methods from the old class, and we can use the methods of the exception class, such as getLine(), getFile(), and getMessage().
Explanation of the example:
The above code throws an exception and catches it through a custom exception class:
The customException() class is used as the old exception class Created by an extension. This way it inherits all properties and methods of the old class.
Create errorMessage() function. If the e-mail address is illegal, the function returns an error message
Set the $email variable to an illegal e-mail address string
Execute the "try" code block, because the e-mail address is illegal , thus throwing an exception
The "catch" code block catches the exception and displays the error message
Multiple exceptions
You can use multiple exceptions for a script to detect multiple situations.
You can use multiple if..else code blocks, or a switch code block, or nest 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(); }?>
Explanation of the example:
The above code tests two conditions. If any condition is not true, an exception is thrown:
The customException() class was created as an extension of the old exception class. This way it inherits all properties and methods of the old class.
Create errorMessage() function. If the e-mail address is not valid, this function returns an error message.
Execute the "try" code block, and in the first condition, no exception will be thrown.
Since the e-mail contains the string "example", the second condition will trigger an exception.
The "catch" code block will catch the exception and display the appropriate error message
If customException is not caught, the base exception is caught tightly and the exception is handled there.
Rethrowing exceptions
Sometimes, when an exception is thrown, you may want to handle it differently than the standard way. The exception can be thrown again in a "catch" block.
The script should hide system errors from the user. System errors may be important to programmers, but users are not interested in them. To make it easier for users, you can throw the exception again with a user-friendly message:
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(); }
?>
Explanation of the example:
The above code detects whether the email address contains the string "example". If so, throw the exception again:
The customException() class was created as an extension of the old exception class. This way it inherits all properties and methods of the old class.
Create errorMessage() function. If the e-mail address is not valid, this function returns an error message.
Set the $email variable to a valid email address, but containing the string "example".
A "try" block contains another "try" block so that the exception can be thrown again.
The exception is triggered because the e-mail contains the string "example".
"catch" catches the exception and rethrows "customException".
Caught "customException" and displays an error message.
If the exception is not caught in its current "try" block, it will look for a catch block at a higher level.
Set Top Level Exception Handler
The set_exception_handler() function can set a user-defined function that handles all uncaught exceptions.
function myException($exception){
echo "Exception: " , $exception->getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred') ;
?>
The output of the above code should be similar to this:
Exception: Uncaught Exception occurred
In the above code, there is no "catch" code block, triggering the top-level exception handler instead. This function should be used to catch all uncaught exceptions.
Exception rules
Code that requires exception handling should be placed within a try block to catch potential exceptions.
Each try or throw block must have at least one corresponding catch block.
Use multiple catch blocks to catch different kinds of exceptions.
Exceptions can be re-thrown in a catch block within a try block.
In short: if an exception is thrown, you must catch it.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
