php實(shí)現(xiàn)根據(jù)身份證獲取年齡
來源:V
發(fā)布時(shí)間:2020-05-14 09:48:22
閱讀量:1829
實(shí)例代碼如下:
(相關(guān)視頻教程推薦:php視頻教程)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | function getAge( $id ){
# 1.從身份證中獲取出生日期
$id = $id ;
$birth_Date = strtotime ( substr ( $id , 6, 8));
# 2.格式化[出生日期]
$Year = date ( 'Y' , $birth_Date );
$Month = date ( 'm' , $birth_Date );
$Day = date ( 'd' , $birth_Date );
# 3.格式化[當(dāng)前日期]
$current_Y = date ( 'Y' );
$current_M = date ( 'm' );
$current_D = date ( 'd' );
# 4.計(jì)算年齡()
$age = $current_Y - $Year ;
if ( $Month > $current_M || $Month == $current_M && $Day > $current_D ){
$age --;
}
# 返回
return $age ;
}
|
使用:
通過調(diào)用 getAge() 方法,傳入身份證號(hào)即可計(jì)算。
1 2 3 | # 參數(shù)必須為 String 型
echo getAge( '130322xxxxxxxxxx14' );
|