|
<?php
function getAgeByID($id){
//過了這年的生日才算多了1周歲
if(empty($id)) return '';
$date=strtotime(substr($id,6,8));
//獲得出生年月日的時間戳
$today=strtotime('today');
//獲得今日的時間戳
$diff=floor(($today-$date)/86400/365);
//得到兩個日期相差的大體年數(shù)
//strtotime加上這個年數(shù)后得到那日的時間戳后與今日的時間戳相比
$age=strtotime(substr($id,6,8).' +'.$diff.'years')>$today?($diff+1):$diff;
return $age;
}
?>
php技術(shù):php根據(jù)身份證號碼計算年齡的實例代碼,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。