/**
* 算法验证身份证是否存在正确
* @param [string] $idcard
* @return void true正确 false错误
*/
function validateIDCard($idcard) {
$idcard = strtoupper($idcard); //把所有字符转换为大写
if (!preg_match('#^\d{17}(\d|X)$#', $idcard)) {
return false;
}
// 判断出生年月日的合法性(解决号码为666666666666666666也能通过校验的问题)
$birth = substr($idcard, 6, 8);
if ($birth < "19000101" || $birth > date("Ymd")) {
return false;
}
$year = substr($birth, 0, 4);
$month = substr($birth, 4, 2);
$day = substr($birth, 6, 2);
if (!checkdate($month, $day, $year)) { //检查一些日期是否是有效的格利高里日期
return false;
}
// 校验身份证格式(mod11-2)
$check_sum = 0;
for ($i = 0; $i < 17; $i++) {
// $factor = (1 << (17 - $i)) % 11;
$check_sum += $idcard[$i] * ((1 << (17 - $i)) % 11);
}
$check_code = (12 - $check_sum % 11) % 11;
$check_code = $check_code == 10 ? 'X' : strval($check_code);
if ($check_code !== substr($idcard, -1)) {
return false;
}
return true;
}
php 验证身份证是否存在正确
最新推荐文章于 2023-05-24 17:54:28 发布