登录
注册
首页
开源社群
PHP
php通过生日计算年龄
php通过生日计算年龄
开源社区
2022-12-23 21:18:50
0
1576
php通过生日计算年龄 ```php function birthdayAge($birthday){ $age = strtotime($birthday); if($age === false){ return false; } list($y1,$m1,$d1) = explode("-",date("Y-m-d",$age)); $now = strtotime("now"); list($y2,$m2,$d2) = explode("-",date("Y-m-d",$now)); $age = $y2 - $y1; if((int)($m2.$d2) < (int)($m1.$d1)) $age -= 1; return $age; } ```
评论
此内容暂不接受评论!
最新帖子
echarts是什么
echarts中文官网
php通过生日计算年龄
PHP代码标记
form表单处理
实用的脚本
什么是 PostgreSQL?
什么是 MySQL?
filezilla是什么
什么是html
热门帖子
标注
×
请输入标注内容(最多8个字符):
返回顶部
thinksaas
在线咨询
关注公众号