php 根据身份证获取年龄
作者:互联网
/** * 根据身份证获取年龄 * * @param string $idcard 身份证号 * @param bool $isExact true:周岁,false:虚岁 * @return void */ function getAge($idcard, $isExact = true) { if (empty($idcard)) return null; // 从身份证中获取出生日期 $birthDate = strtotime(substr($idcard, 6, 8)); //截取日期并转为时间戳 // 格式化[出生日期] $year = date('Y', $birthDate); //yyyy $month = date('m', $birthDate); //mm $day = date('d', $birthDate); //dd // 格式化[当前日期] $currentYear = date('Y'); //yyyy $currentMonth = date('m'); //mm $currentDay = date('d'); //dd // 计算年龄() $age = $currentYear - $year; //今年减去生日年 if ($isExact) { // 如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁 if ($month > $currentMonth || ($month == $currentMonth && $day > $currentDay)) { //深层判断(日) $age--; } } return $age; }
标签:return,isExact,idcard,birthDate,month,获取,身份证,date,php 来源: https://www.cnblogs.com/Noble-zeng/p/14648117.html