php教程

超轻量级php框架startmvc

php简单计算年龄的方法(周岁与虚岁)

更新时间:2020-03-16 00:37:49 作者:startmvc
本文实例讲述了php简单计算年龄的方法。分享给大家供大家参考,具体如下:/***$date是时间

本文实例讲述了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;
}

PS:本站还提供了一个Unix时间戳转换工具,包含了各种常见语言针对时间戳的操作方法,提供给大家参考:

Unix时间戳(timestamp)转换工具: http://tools.jb51.net/code/unixtime

php 计算 年龄