年龄php,PHP输入年月日期实现计算年龄功能

PHP输入年月日期实现计算年龄功能

发布时间:2020-05-21 10:10:44

来源:亿速云

阅读:156

作者:Leah

这篇文章给大家分享的是PHP输入年月日期实现计算年龄功能,相信大部分人都还没学会这个技能,为了让大家学会,给大家总结了以下内容,话不多说,一起往下看吧。

579689caa863c0367bbf046c9bb07bc7.png

废话不多说,之间上代码:<?php

/**

* 根据出生年月日计算出年龄

* @param $birth_year

* @param $birth_month

* @param $birth_day

* @return int

*/

function getAgeByBirth($birth_year,$birth_month,$birth_day){

if(empty($birth_year) || empty($birth_month) || empty($birth_day)){

return 0;

}

$current_year = date('Y',time());

$current_month = date('m',time());

$current_day = date('d',time());

if($birth_year >= $current_year){

return 0;

}

$age = $current_year - $birth_year - 1;

if($current_month>$birth_month){

return $age+1;

}else if($current_month == $birth_month && $current_day>=$birth_day){

return $age+1;

}else{

return $age;

}

}

//测试:

echo getAgeByBirth('1988','4','8');

?>

运行结果:32

以上就是PHP输入年月日期实现计算年龄功能的具体操作,代码详细清楚,如果在日常工作遇到这个问题,希望你能通过这篇文章解决问题。如果想了解更多相关内容,欢迎关注亿速云行业资讯频道!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值