Home  >  Article  >  Backend Development  >  Example of php implementing verification of ID card related information

Example of php implementing verification of ID card related information

黄舟
黄舟Original
2017-08-18 15:01:082232browse

php ID card verification related class, PHP automatically obtains the corresponding zodiac sign function based on the ID card number, automatically returns the corresponding zodiac sign based on the ID card number, automatically returns the corresponding zodiac sign based on the ID card number, and automatically returns the corresponding zodiac sign based on the ID card number. Automatically return the gender, check whether it is an ID number, and extract the corresponding characters from the verification code string according to the serial number.

The first step is to download the PHP ID verification related class library we need to use in this course: http://www.php.cn/xiazai/leiku/527

Step 2: After the download is completed, find the php class file we need, unzip it to our local directory, and create a new php file!

The third step, after completion, we need to call this class in the new php file and instantiate the class:

<?php
include_once "shenf.php";//引入类文件
$obj = new IdcardAction; //实例化

//根据身份证号进行判断,符合要求返回相应的信息
echo "根据身份证号,自动返回对应的星座:".$obj->get_xingzuo("440983198311220309")."<br>";
echo "根据身份证号,自动返回对应的生肖:".$obj->get_shengxiao("440983198311220309")."<br>";
echo "根据身份证号,自动返回对应的性别:".$obj->get_xingbie("440983198311220309")."<br>";
echo "根据身份证号,判断是否成年:".$obj->checkbig18("440983198311220309")."<br>";
echo "根据身份证号,判断是否是身份证号:".$obj->isIdCard("440983198311220309")."<br>";

?>

Run this file and get the result as shown below:

Example of php implementing verification of ID card related information

Note:

What we have here is just a part of the class as Example, more friends can try it themselves~

The above is the detailed content of Example of php implementing verification of ID card related information. 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