Home > Article > Backend Development > How to use PHP regular expression to verify whether the input string is the correct email address
With the development of the Internet, email has become an indispensable part of people's daily lives. In website development, validating user-entered email addresses is a necessary and common operation. This article will introduce how to use PHP regular expressions to verify whether the input string is the correct email address.
A regular expression is a tool used to match character patterns. In PHP, regular matching of strings is achieved by using the preg_match() function. The syntax is as follows:
preg_match($pattern, $subject, $matches);
where $pattern is a regular expression, $subject is the string that needs to be matched, and $matches is the matching result. The function returns 1 or 0, indicating successful match and failure respectively.
Before verifying the email address, you need to first clarify what the correct email address format is. Generally speaking, a legal email address should meet the following requirements:
After understanding the legal email address format, we can write regular expressions according to the rules. The following is a common regular expression for verifying email addresses:
$pattern = '/^[w-.]+@([w-]+.)+[a-zA-Z]{2,4}$/';
Among them, ^ means that it must start with the regular expression, and $ means that it must end with the regular expression. [w-.] represents the user name, which can be one or more consecutive characters of English letters, numbers, underscores, dashes, and periods. @ represents the delimiter. ([w-] .) represents a domain name, a string consisting of several letters, numbers, underscores, and dashes followed by one or more periods. Finally, [a-zA-Z]{2,4} represents the top-level domain name, which is only allowed to consist of 2 to 4 letters.
After writing the regular expression, we can use it in the PHP code to verify the email address. The following is a PHP code that uses the preg_match() function to verify the input string:
$email = $_POST['email']; $pattern = '/^[w-.]+@([w-]+.)+[a-zA-Z]{2,4}$/'; if (preg_match($pattern, $email)) { echo "邮箱地址正确!"; } else { echo "邮箱地址不正确!"; }
First, we get the email address entered by the user through $_POST[] and save it in the $email variable. Then, use the above regular expression to determine whether the input string is the correct email address. If the match is successful, "The email address is correct!" is output; otherwise, "The email address is incorrect!" is output.
This article introduces how to use PHP regular expressions to verify whether the input string is the correct email address. In actual projects, email address verification is essential, and mastering the matching rules of regular expressions and the use of PHP functions can help us better complete the verification operation.
The above is the detailed content of How to use PHP regular expression to verify whether the input string is the correct email address. For more information, please follow other related articles on the PHP Chinese website!