45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:怎么样使用PHP计算年龄?

怎么样使用PHP计算年龄?

2017-07-17 13:43:59 来源:www.45fan.com 【

怎么样使用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;
}

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

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

希望本文所述对大家PHP程序设计有所帮助。


本文地址:http://www.45fan.com/bcdm/89990.html
Tags: 简单 PHP 计算
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部