pfinal / identity-card
Chinese Identity Card package
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 4
Open Issues: 0
pkg:composer/pfinal/identity-card
Requires
- php: >=5.3
This package is auto-updated.
Last update: 2025-10-13 19:46:28 UTC
README
中国(大陆)公民身份证类
安装
composer require pfinal/identity-card
<?php require_once __DIR__ . '/vendor/autoload.php'; use PFinal\IdentityCard\IDCard; //是否有效 $isPass = IDCard::validate('440105199101301233'); //生日 $birthday = IDCard::getBirthday('440105199101301233'); //性别 $gender = IDCard::getGender('440105199101301233'); //地区信息 //安装组件 composer require "douyasi/identity-card" //需要开启 pdo sqlite 扩展 $area = IDCard::getArea('440105199101301233');