从用户出生日期开始计算年龄的最精确功能是什么。我有以下代码,并想知道它是如何改进的,因为它不支持所有日期格式,也不确定它是否是最准确的功能(DateTime合规性会很好)。
function getAge($birthday) {
return floor((strtotime(date('d-m-Y')) - strtotime($date))/(60*60*24*365.2421896));
}
答案 0 :(得分:10)
$birthday = new DateTime($birthday);
$interval = $birthday->diff(new DateTime);
echo $interval->y;
应该工作
答案 1 :(得分:9)
检查
<?php
$c= date('Y');
$y= date('Y',strtotime('1988-12-29'));
echo $c-$y;
?>
答案 2 :(得分:3)
使用此代码可以包括完整年龄,包括年,月和日 -
<?php
//full age calulator
$bday = new DateTime('02.08.1991');//dd.mm.yyyy
$today = new DateTime('00:00:00'); // Current date
$diff = $today->diff($bday);
printf('%d years, %d month, %d days', $diff->y, $diff->m, $diff->d);
?>
答案 3 :(得分:2)
尝试使用DateTime:
$now = new DateTime();
$birthday = new DateTime('1973-04-18 09:48:00');
$interval = $now->diff($birthday);
echo $interval->format('%y years'); // 39 years
答案 4 :(得分:0)
这有效:
<?
$date = date_create('1984-10-26');
$interval = $date->diff(new DateTime);
echo $interval->y;
?>
如果您告诉我$birthday
变量的格式,我将为您提供准确的解决方案
答案 5 :(得分:0)
将$date
更改为$birthday
。
答案 6 :(得分:0)
WTF?
的strtotime(日期(&#39; d-M-Y&#39;))
所以你从当前时间戳生成一个日期字符串,然后将日期字符串转换回时间戳?
顺便说一下,它不起作用的原因之一是strtotime()假定数字日期采用m / d / y格式(即日期的美国格式)。另一个原因是公式中没有使用参数($ birthday)。答案 7 :(得分:0)
对于超级准确性,您需要考虑闰年因素:
function get_age($dob_day,$dob_month,$dob_year){
$year = gmdate('Y');
$month = gmdate('m');
$day = gmdate('d');
//seconds in a day = 86400
$days_in_between = (mktime(0,0,0,$month,$day,$year) - mktime(0,0,0,$dob_month,$dob_day,$dob_year))/86400;
$age_float = $days_in_between / 365.242199; // Account for leap year
$age = (int)($age_float); // Remove decimal places without rounding up once number is + .5
return $age;
}
所以使用:
echo get_date(31,01,1985);
或其他......
N.B。要查看您的精确年龄到小数
return $age_float
代替。
答案 8 :(得分:0)
此功能正常。
function age($birthday){
list($day,$month,$year) = explode("/",$birthday);
$year_diff = date("Y") - $year;
$month_diff = date("m") - $month;
$day_diff = date("d") - $day;
if ($day_diff < 0 && $month_diff==0){$year_diff--;}
if ($day_diff < 0 && $month_diff < 0){$year_diff--;}
return $year_diff;
}
答案 9 :(得分:0)
这是我的长/详细版本(如果需要,可以缩短版本):
$timestamp_birthdate = mktime(9, 0, 0, $birthdate_month, $birthdate_day, $birthdate_year);
$timestamp_now = time();
$difference_seconds = $timestamp_now-$timestamp_birthdate;
$difference_minutes = $difference_seconds/60;
$difference_hours = $difference_minutes/60;
$difference_days = $difference_hours/24;
$difference_years = $difference_days/365;