


How to use PHP regular expressions to verify whether the input string is the correct ID number, passport number or Hong Kong and Macao pass format
ID card, passport and Hong Kong and Macao pass numbers are all important personal identity certificates. In order to ensure the security of personal information, we need to verify in the system whether the ID number entered by the user complies with the standard format. PHP regular expressions are a very powerful tool that can easily achieve this purpose. This article will introduce how to use PHP regular expressions to verify the ID number, passport number and Hong Kong and Macao pass number entered by the user.
1. ID card number format verification
The ID number is an 18-digit number, and the last digit may be a number or the letter X. The first 17 digits of the ID number are a combination of area code and date of birth code, which can be verified using regular expressions. Let’s take a look at the regular expression for verifying ID number:
$reg = '/^d{17}[dX]$/';
where, ^ and $ represent the beginning and end of the string respectively. d represents a number, {17} means that the previous d must appear 17 times. [dX] means the last digit may be a number or the letter X. The part between / and / represents the content of the regular expression and can be adjusted as needed.
2. Passport number format verification
The Chinese passport number consists of 1 capital letter and 7 digits, and the foreign passport number consists of any digits of capital letters and digits. Let’s take a look at the regular expression for verifying passport numbers:
// 中国护照号码验证 $reg_cn_passport = '/^[A-Z]d{7}$/'; // 外国护照号码验证 $reg_foreign_passport = '/^[A-Z0-9]+$/';
Among them, [A-Z] means matching uppercase letters, d means matching numbers, and means matching one or more times. The two regular expressions above represent the verification rules for Chinese passport numbers and foreign passport numbers respectively.
3. Hong Kong and Macao Pass Number Format Verification
The Hong Kong and Macao Pass Number consists of 8 digits consisting of letters K or M. Let’s take a look at the regular expression for verifying the Hong Kong and Macao Pass Number:
$reg = '/^[KM]d{8}$/';
Among them, [KM] means matching K or M letters, d means matching numbers, and {8} means matching numbers 8 times. This regular expression is used to verify whether the format of the Hong Kong and Macao pass numbers is correct.
The above is the regular expression for verifying the format of ID card number, passport number and Hong Kong and Macao pass number. In database operations, form validation and other occasions, we can use these regular expressions for verification. PHP's preg_match() function can be used for regular expression matching. The specific usage is as follows:
// 身份证号码验证 $id_number = '123456789012345678'; // 待验证的身份证号码 $reg = '/^d{17}[dX]$/'; // 身份证号码验证正则表达式 if (preg_match($reg, $id_number)) { echo '身份证号码格式正确'; } else { echo '身份证号码格式错误'; } // 护照号码验证 $passport_number = 'A1234567'; // 待验证的护照号码 $reg = '/^[A-Z]d{7}$/'; // 护照号码验证正则表达式 if (preg_match($reg, $passport_number)) { echo '护照号码格式正确'; } else { echo '护照号码格式错误'; } // 港澳通行证号码验证 $hk_macau_passport_number = 'K12345678'; // 待验证的港澳通行证号码 $reg = '/^[KM]d{8}$/'; // 港澳通行证号码验证正则表达式 if (preg_match($reg, $hk_macau_passport_number)) { echo '港澳通行证号码格式正确'; } else { echo '港澳通行证号码格式错误'; }
The above code uses the preg_match() function to perform regular expression matching on ID number, passport number and Hong Kong and Macao pass number. , you can quickly determine whether the entered ID number conforms to the standard format.
Summary
This article introduces how to use PHP regular expressions to verify whether the ID number, passport number and Hong Kong and Macao pass number entered by the user conform to the standard format. Regular expressions are a very important skill and are widely used in processing text operations and form validation. By studying the content of this article, I believe you will have a deeper understanding of the application of PHP regular expressions.
The above is the detailed content of How to use PHP regular expressions to verify whether the input string is the correct ID number, passport number or Hong Kong and Macao pass format. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

IPv6 refers to InternetProtocolVersion6, which is an IP address protocol used for Internet communication. An IPv6 address is a number composed of 128 bits, usually represented by eight hexadecimal number groups. In PHP, you can use regular expressions to verify whether the input is an IPv6 address. Here's how to use PHP regular expressions to verify IPv6 addresses. Step 1: Understand the format of the IPv6 address. The IPv6 address consists of 8 hexadecimal blocks, each

In the process of data processing, it is often necessary to extract information in a specific format from text. As a relatively common piece of personal information, ID number is often used in data processing. You can use Python regular expressions to easily extract the ID number and perform certain verification on it. The ID card number is composed of 18 digits, including the region, date of birth, check code and other information in the ID card number. In Python, we can use the regular expression function of the re module to extract the ID number. head

In PHP, we can use regular expressions to verify whether a string is empty. Cases where the string is empty include the following: The string contains only spaces. The string length is 0. String is null or undefined. Next, we'll cover how to use regular expressions in PHP to validate these situations. Regular expression: s+ This regular expression can be used to match strings containing only spaces. Where s means matching spaces, + means matching one or more. Code example: functionisEmptySt

When writing web applications, you often need to verify phone numbers. A common method in PHP is to use regular expressions to determine whether the phone number is in the correct format. Regular expressions are a powerful tool that can help you identify certain patterns in concise statements. Below is an example of using regular expressions in PHP to validate phone number format. First, let's define the common format for phone numbers. Phone numbers can contain numbers, parentheses, hyphens, and spaces. A standard phone number should contain 10 digits, preceded by

With the rapid development of the Internet, URL addresses have become an indispensable part of people's daily lives. In web development, in order to ensure that the URL address entered by the user can be correctly recognized and used by the system, we need to perform format verification on it. This article will introduce how to use PHP regular expressions to verify URL address format. 1. Basic components of URL addresses Before understanding how to verify the URL address format, we first need to understand the basic components of URL addresses. Usually, a standard URL address consists of

ID number and passport number are common document numbers in people's lives. When implementing functions involving these document numbers, it is often necessary to perform format verification on the entered numbers to ensure their correctness. In PHP, regular expressions can be used to achieve this function. This article will introduce how to use PHP regular expressions to verify whether the input string is in the format of an ID number or passport number. 1. ID card number verification The ID card number is composed of 18 digits and the last digit may be a letter (check code). Its format is as follows: the first 6

In PHP, regular expressions are a commonly used string matching and validation tool. During the development process, the input file path needs to be frequently verified to ensure that it is in the correct format. This article will introduce how to use regular expressions to verify whether a string is a file path. First, we need to determine the basic format of a file path. In Windows systems, a typical file path is in a format similar to "C:ProgramFilesPHPphp.exe". The path is divided into the following parts:

The ID number is an identity proof tool that we often use in our daily lives, and the birthday information contained in it is also very important. When using PHP to verify ID numbers, we often need to determine whether the birthday information is correct. This article will introduce how to use PHP regular expressions to verify the birthday information of the ID number. 1. The basic format of the ID number. The ID number is a string composed of 18 digits and letters. The last digit may be a number or a letter, and may be uppercase or lowercase. The first 17 digits are the owner of the ID card
