這篇文章主要介紹了php簡單計算年齡的方法,透過自訂函數實現針對週歲與虛歲的簡單計算功能,涉及php日期與時間相關操作技巧,需要的朋友可以參考下
具體如下:
/** * $date是时间戳 * $type为1的时候是虚岁,2的时候是周岁 */ function getAgeByBirth($date,$type = 1){ $nowYear = date("Y",time()); $nowMonth = date("m",time()); $nowDay = date("d",time()); $birthYear = date("Y",$date); $birthMonth = date("m",$date); $birthDay = date("d",$date); if($type == 1){ $age = $nowYear - ($birthYear - 1); }else{$type == 2}{ if($nowMonth<$birthMonth){ $age = $nowYear - $birthYear - 1; }elseif($nowMonth==$birthMonth){ if($nowDay<$birthDay){ $age = $nowYear - $birthYear - 1; }else{ $age = $nowYear - $birthYear; } }else{ $age = $nowYear - $birthYear; } } return $age; }
以上就是本文的全部內容,希望對大家的學習有幫助。
相關推薦:
#
以上是php簡單計算年齡的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!