Home Backend Development PHP Tutorial How to verify age range of ID number using PHP regular expression

How to verify age range of ID number using PHP regular expression

Jun 24, 2023 pm 01:00 PM
php regular expression identification number

The ID card number is the only identity certificate for Chinese citizens, which contains personal identity information such as date of birth. In practical applications, it is sometimes necessary to verify the age range of ID numbers. PHP regular expressions are a very convenient way to implement this. This article will introduce how to use PHP regular expressions to verify the age range of an ID number.

1. ID card number structure

The ID card number consists of seventeen characters and is divided into six parts: the first two digits are the province code, and the middle four digits are the city and county code. The next two digits are the year code, the next two digits are the month code, the next two digits are the date code, and the last digit is the check digit. The specific structure is as follows:

xxxxxxxxxxxxxxXY

Among them, the first 17 digits are the main part of the ID number, X is any number in the first 17 digits of the ID number, and Y is the ID verification code. , its calculation method can refer to the provisions of the national standard GB 11643-1999 "Citizen Identity Card Number".

2. Basic idea

For age verification of ID number, we can get the date of birth from the ID number, and then compare it with the current date to calculate the ID card holding period. The age of the owner. The specific verification steps are as follows:

1. Obtain the date of birth in the ID number through regular expressions;
2. Convert the date of birth into a timestamp;
3. Through the current Calculate the current timestamp from the date;
4. Compare the current timestamp and the birth timestamp to obtain the age of the ID card holder;
5. Determine whether the age is within the specified range.

3. Regular expression

Using PHP’s preg_match function can easily obtain the date of birth in the ID number. The specific regular expression is as follows:

/(d{6})(d{4})(d{2})(d{2})d{2}(d)(d|x)/ i

Among them, the brackets of the regular expression are used to indicate the matching substring. The d in the brackets indicates a number, d{6} indicates matching six numbers, and d{4} indicates matching four numbers. And so on.

4. PHP code implementation

Using the regular expression provided above, the date of birth can be obtained through the preg_match function. The specific implementation code is as follows:

function getAgeByIdCard($idCard, $minAge, $maxAge)
{
    // 通过正则表达式获取身份证号码的出生年月日
    if (preg_match('/(d{6})(d{4})(d{2})(d{2})d{2}(d)(d|x)/i', $idCard, $matches))
    {
        list(,$birthYear,$birthMonth,$birthDay) = $matches;

        // 将出生年月日转化为时间戳
        $birthTimestamp = strtotime("{$birthYear}-{$birthMonth}-{$birthDay}");

        // 计算当前时间戳
        $currentTimestamp = time();

        // 计算身份证持有者的年龄
        $age = floor(($currentTimestamp - $birthTimestamp) / 31536000);

        // 判断年龄是否在指定范围内
        if ($age >= $minAge && $age <= $maxAge) {
            return true;
        }
    }
    
    return false;
}

// 身份证号码
$idCard = "320123199001011234";
// 最小年龄
$minAge = 18;
// 最大年龄
$maxAge = 60;

// 验证身份证号码是否在指定年龄范围内
if (getAgeByIdCard($idCard, $minAge, $maxAge)) {
    echo "身份证号码通过验证";
} else {
    echo "身份证号码不在指定年龄范围内";
}
Copy after login

5. Summary

This article introduces how to use PHP regular expressions to verify the age range of the ID number. Through the provided regular expression, you can easily obtain the date of birth in the ID number. Then use PHP's timestamp function to convert the date of birth into a timestamp, thereby calculating the age of the ID card holder. Through the implementation of this article, a convenient verification method can be provided for practical applications.

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

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles