xgnic 发表于 2018-2-11 12:00:33


            本文实例讲述了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
页: [1]
查看完整版本: php简单计算年龄的方法(周岁与虚岁)