根据身份证号实时计算年龄
/*
* 根据身份证号码获取年龄
* inupt $code = 完整的身份证号
* return $age : 年龄 三位数 如023
*/
function ageVerification($code)
{
$age_time = strtotime(substr($code, 6, 8));
if ($age_time === false) {
return false;
}
list($y1,$m1,$d1) = explode("-", date("Y-m-d", $age_time));
$now_time = strtotime("now");
list($y2,$m2,$d2) = explode("-", date("Y-m-d", $now_time));
$age = $y2 - $y1;
if ((int)($m2.$d2) < (int)($m1.$d1)) {
$age -= 1;
}
return str_pad($age, 3, "0", STR_PAD_LEFT);
}
根据判断身份证号码是否为合法
/**
* 身份证校验是否合法
*
* @param string $idcard 完整的身份证号
*/
function checkIdCard($idcard)
{
// 只能是18位
if (strlen($idcard) != 18) {
return false;
}
// 取出本体码
$idcard_base = substr($idcard, 0, 17);
// 取出校验码
$verify_code = substr($idcard, 17, 1);
// 加权因子
$factor = array(7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2);
// 校验码对应值
$verify_code_list = array('1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2');
// 根据前17位计算校验码
$total = 0;
for ($i=0; $i<17; $i++) {
$total += substr($idcard_base, $i, 1)*$factor[$i];
}
// 取模
$mod = $total % 11;
// 比较校验码
if ($verify_code == $verify_code_list[$mod]) {
// 如果年龄计算失败,则判断为 身份证号有误
if(ageVerification($idcard)) {
return true;
}
}
return false;
}