php计算今年几岁,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

$age = $nowYear - $birthYear - 1;

}elseif($nowMonth==$birthMonth){

if($nowDay

$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相关内容感兴趣的读者可查看本站专题:《php日期与时间用法总结》、《PHP数学运算技巧总结》、《PHP数组(Array)操作技巧大全》、《PHP数据结构与算法教程》、《php程序设计算法总结》、《php正则表达式用法总结》、《PHP运算与运算符用法总结》、《php字符串(string)用法总结》及《php常见数据库操作技巧汇总》

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值