首頁  >  文章  >  後端開發  >  php實作根據身分證取得年齡

php實作根據身分證取得年齡

王林
王林轉載
2020-02-25 17:54:135164瀏覽

php實作根據身分證取得年齡

實例程式碼如下:

(相關影片教學建議:php影片教學

function getAge($id){

# 1.从身份证中获取出生日期
$id = $id;//身份证
$birth_Date = strtotime(substr($id, 6, 8));//截取日期并转为时间戳

# 2.格式化[出生日期]
$Year = date('Y', $birth_Date);//yyyy
$Month = date('m', $birth_Date);//mm
$Day = date('d', $birth_Date);//dd

# 3.格式化[当前日期]
$current_Y = date('Y');//yyyy
$current_M = date('m');//mm
$current_D = date('d');//dd

# 4.计算年龄()
$age = $current_Y - $Year;//今年减去生日年
if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
    $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
}
# 返回
return $age;

}

使用:

透過呼叫 getAge() 方法,傳入身分證號即可計算。

# 参数必须为 String 型
echo getAge('130322xxxxxxxxxx14');
// xx

推薦教學:php教學

#

以上是php實作根據身分證取得年齡的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除