Home  >  Article  >  Backend Development  >  PHP regular expression to achieve accurate matching of ID card number

PHP regular expression to achieve accurate matching of ID card number

PHPz
PHPzOriginal
2024-03-06 08:24:03719browse

PHP regular expression to achieve accurate matching of ID card number

PHP is a popular server-side scripting language widely used in website development and data processing. When developing a website or application, it is often necessary to validate and process user-entered data. Among them, the ID number is an important personal identity certification information that requires accurate matching verification. This article will introduce how to use PHP regular expressions to accurately match ID numbers and provide specific code examples.

The ID number is the unique identity of a Chinese citizen and contains specific formats and rules. Generally speaking, the ID number consists of 18 characters, and the last digit may be a number or the character X. The format of the ID number is fixed. The first 6 digits represent the area code, the 7th to 14th digits represent the date of birth, the 15th to 17th digits are the sequence code, and the last digit is the check code. In order to ensure the validity of the ID number, it needs to be accurately verified.

In PHP, regular expressions can be used to easily achieve accurate matching of ID numbers. The following is a sample code that shows how to use PHP regular expressions to verify the ID number:

<?php
// 定义身份证号码的正则表达式
$idCardPattern = '/^([1-9]d{5})(18|19|20)d{2}(0d|1[0-2])([0-2]d|3[01])d{3}([0-9X])$/';

// 待验证的身份证号码
$idCardNumber = '123456199001012345';

// 使用preg_match函数进行匹配
if (preg_match($idCardPattern, $idCardNumber)) {
    echo "身份证号码格式正确";
} else {
    echo "身份证号码格式错误";
}
?>

In the above example, a regular expression $idCardPattern that represents the format of the ID number is first defined. Then, an ID number to be verified $idCardNumber is defined. Then, use the preg_match function to match $idCardNumber, and output the corresponding message based on the matching result.

Using regular expressions can achieve precise matching of ID card numbers to ensure that they comply with standard formats and rules. When developing a website or application, it is very important to verify the ID number entered by the user to improve the accuracy and security of the data.

In short, through the introduction and sample code of this article, readers can understand how to use PHP regular expressions to achieve accurate matching of ID numbers, and apply this technology in actual development. I hope this article is helpful to readers, thank you for reading!

The above is the detailed content of PHP regular expression to achieve accurate matching of ID card number. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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