php 实现根据身份证获取精准年龄
2021-04-15 07:27
标签:www 格式 返回 详细 prism 等于 ken pretty sub 有时候,我们希望通过身份证来计算出年龄,那么下面我写的函数很适合。 实现 function getAge($id){ # 1.从身份证中获取出生日期 # 2.格式化[出生日期] # 3.格式化[当前日期] # 4.计算年龄() } 通过调用 php 实现根据身份证获取精准年龄 标签:www 格式 返回 详细 prism 等于 ken pretty sub 原文地址:https://www.cnblogs.com/benming/p/12363207.html
代码中已有详细注释。
$id = $id;//身份证
$birth_Date = strtotime(substr($id, 6, 8));//截取日期外汇返佣并转为时间戳
$Year = date(‘Y‘, $birth_Date);//yyyy
$Month = date(‘m‘, $birth_Date);//mm
$Day = date(‘d‘, $birth_Date);//dd
$current_Y = date(‘Y‘);//yyyy
$current_M = date(‘m‘);//mm
$current_D = date(‘d‘);//dd
$age = $current_Y - $Year;//今年减去生日年
if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
$age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
}
# 返回
return $age;使用
getAge()
方法,传入身份证号即可计算。# 参数必须为 String 型
echo getAge(‘130322xxxxxxxxxx14‘);
// xx