PHP regular expression method to verify specific age range

WBOY
Release: 2023-06-24 11:46:01
Original
1387 people have browsed it

PHP regular expression method to verify a specific age range

Regular expression is a pattern matching technique that can be used to verify various text formats. In PHP, we can use regular expressions to verify Specific age range.

For a specific age range, we can use the following two methods to verify:

Method 1: Use the preg_match function

The preg_match function in PHP can be used to verify a character Whether the string conforms to a specific regular expression rule. We can use the preg_match function to implement validation for a specific age range.

The following is the code to implement this method:

function validateAgeRange($age) { if (!preg_match('/^[1-9]d*$/', $age)) { return false; // 验证不通过,因为年龄必须为正整数 } if ($age < 18 || $age > 60) { return false; // 验证不通过,因为年龄必须在 18 到 60 岁之间 } return true; // 验证通过 }
Copy after login

The main process of this function is to first use a regular expression to verify whether the incoming parameter is a positive integer. If not, return false; then Determine whether the age is within the specified range, if not, return false; finally, if both pass the verification, return true.

Method 2: Use regular expression matching

You can use regular expressions to check whether the age is within a specific range. The following is an example of a regular expression that verifies whether a person is between 18 and 60 years old:

/^(1[8-9]|[2-5]d|60)$/
Copy after login

This regular expression uses grouping and character sets to match age. Among them, the character set [18-60] matches ages between 18 and 60, while the grouping (1[8-9]|[2-5]d|60) matches all integers between 18 and 60. Finally, the preg_match function is used to match the string, and if the match is successful, it means the age is within the specified range.

The following is a sample code that uses this regular expression for verification:

function validateAgeRange($age) { if (!preg_match('/^(1[8-9]|[2-5]d|60)$/', $age)) { return false; // 验证不通过 } return true; // 验证通过 }
Copy after login

This method uses a more complex regular expression, but it can quickly verify whether the age is within the specified range. .

Summary

In PHP, we can use the preg_match function and regular expressions to verify a specific age range. Both methods effectively verify that the entered age matches the specified range, and return true or false depending on the result. At the same time, using regular expressions can also help simplify code and improve efficiency.

The above is the detailed content of PHP regular expression method to verify specific age range. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!