我正在寻找一种方法来计算一个人的年龄,因为他们的DOB格式为dd / mm / yyyy。
我正在使用以下功能,该功能在几个月内运行良好,直到某种故障导致while循环永不结束并且整个站点停止运行。由于每天有近10万个DOB经历这个功能,所以很难确定造成这种情况的原因。
有没有人有更可靠的方法来计算年龄?
//replace / with - so strtotime works
$dob = strtotime(str_replace("/","-",$birthdayDate));
$tdate = time();
$age = 0;
while( $tdate > $dob = strtotime('+1 year', $dob))
{
++$age;
}
return $age;
编辑:这个功能似乎在某些时候运行正常,但对于14/09/1986的DOB则返回“40”
return floor((time() - strtotime($birthdayDate))/31556926);
答案 0 :(得分:184)
这很好用。
<?php
//date in mm/dd/yyyy format; or it can be in other formats as well
$birthDate = "12/17/1983";
//explode the date to get month, day and year
$birthDate = explode("/", $birthDate);
//get age from date or birthdate
$age = (date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md")
? ((date("Y") - $birthDate[2]) - 1)
: (date("Y") - $birthDate[2]));
echo "Age is:" . $age;
?>
答案 1 :(得分:155)
$tz = new DateTimeZone('Europe/Brussels');
$age = DateTime::createFromFormat('d/m/Y', '12/02/1973', $tz)
->diff(new DateTime('now', $tz))
->y;
从PHP 5.3.0开始,您可以使用方便的DateTime::createFromFormat
来确保您的日期不会被误认为m/d/Y
格式和DateInterval
类(通过DateTime::diff
)获得从现在到目标日期之间的年数。
答案 2 :(得分:110)
$date = new DateTime($bithdayDate);
$now = new DateTime();
$interval = $now->diff($date);
return $interval->y;
答案 3 :(得分:87)
我使用日期/时间:
$age = date_diff(date_create($bdate), date_create('now'))->y;
答案 4 :(得分:60)
从dob计算Age的简单方法:
$_age = floor((time() - strtotime('1986-09-16')) / 31556926);
31556926
是一年中的秒数。
答案 5 :(得分:14)
//年龄计算器
function getAge($dob,$condate){
$birthdate = new DateTime(date("Y-m-d", strtotime(implode('-', array_reverse(explode('/', $dob))))));
$today= new DateTime(date("Y-m-d", strtotime(implode('-', array_reverse(explode('/', $condate))))));
$age = $birthdate->diff($today)->y;
return $age;
}
$dob='06/06/1996'; //date of Birth
$condate='07/02/16'; //Certain fix Date of Age
echo getAge($dob,$condate);
答案 6 :(得分:13)
我发现这很有效并且很简单。
从1970年减去因为strtotime从1970-01-01计算时间(http://php.net/manual/en/function.strtotime.php)
function getAge($date) {
return intval(date('Y', time() - strtotime($date))) - 1970;
}
结果:
Current Time: 2015-10-22 10:04:23
getAge('2005-10-22') // => 10
getAge('1997-10-22 10:06:52') // one 1s before => 17
getAge('1997-10-22 10:06:50') // one 1s after => 18
getAge('1985-02-04') // => 30
getAge('1920-02-29') // => 95
答案 7 :(得分:8)
如果您想计算使用dob的年龄,您也可以使用此功能。 它使用DateTime对象。
function calcutateAge($dob){
$dob = date("Y-m-d",strtotime($dob));
$dobObject = new DateTime($dob);
$nowObject = new DateTime();
$diff = $dobObject->diff($nowObject);
return $diff->y;
}
答案 8 :(得分:8)
您可以使用Carbon
library,这是DateTime的API扩展。
你可以:
function calculate_age($date) {
$date = new \Carbon\Carbon($date);
return (int) $date->diffInYears();
}
或:
$age = (new \Carbon\Carbon($date))->age;
答案 9 :(得分:7)
想想我会把它扔在这里,因为这似乎是这个问题最受欢迎的形式。
我对PHP可以找到的3种最流行的年龄函数进行了100年的比较,并将我的结果(以及函数)发布到my blog。
正如你所看到的there,所有3个功能都很好地完成了第二个功能上的细微差别。根据我的结果,我的建议是使用第三个函数,除非你想在一个人的生日那天做一些特定的事情,在这种情况下,第一个函数提供了一种简单的方法来完成它。
发现测试的小问题,第二种方法的另一个问题!即将更新博客!现在,我注意到,第二种方法仍然是我在网上找到的最受欢迎的方法,但仍然是我发现最不准确的方法!
我的100年回顾后的建议:
如果你想要更长的东西,那么你可以包括生日等场合:
function getAge($date) { // Y-m-d format
$now = explode("-", date('Y-m-d'));
$dob = explode("-", $date);
$dif = $now[0] - $dob[0];
if ($dob[1] > $now[1]) { // birthday month has not hit this year
$dif -= 1;
}
elseif ($dob[1] == $now[1]) { // birthday month is this month, check day
if ($dob[2] > $now[2]) {
$dif -= 1;
}
elseif ($dob[2] == $now[2]) { // Happy Birthday!
$dif = $dif." Happy Birthday!";
};
};
return $dif;
}
getAge('1980-02-29');
但是 如果您只是想知道年龄而已,仅此而已:
function getAge($date) { // Y-m-d format
return intval(substr(date('Ymd') - date('Ymd', strtotime($date)), 0, -4));
}
getAge('1980-02-29');
关于strtotime
方法的重要说明:
Note:
Dates in the m/d/y or d-m-y formats are disambiguated by looking at the
separator between the various components: if the separator is a slash (/),
then the American m/d/y is assumed; whereas if the separator is a dash (-)
or a dot (.), then the European d-m-y format is assumed. If, however, the
year is given in a two digit format and the separator is a dash (-, the date
string is parsed as y-m-d.
To avoid potential ambiguity, it's best to use ISO 8601 (YYYY-MM-DD) dates or
DateTime::createFromFormat() when possible.
答案 10 :(得分:3)
如果你不需要很高的精确度,只需要几年,你可以考虑使用下面的代码......
print floor((time() - strtotime("1971-11-20")) / (60*60*24*365));
您只需将其放入一个函数中,并用变量替换日期“1971-11-20”。
请注意,由于闰年,上述代码的精确度不高,即大约每4年,天数为366而不是365.表达式60 * 60 * 24 * 365计算一年内的秒数 - 您可以用31536000替换它。
另一个重要的事情是,由于使用 UNIX 时间戳,它同时存在1901年和2038年的问题,这意味着上述表达式在1901年之前和之后的日期将无法正常工作2038。
如果你能忍受上述限制,那么代码应该适合你。
答案 11 :(得分:3)
$birthday_timestamp = strtotime('1988-12-10');
// Calculates age correctly
// Just need birthday in timestamp
$age = date('md', $birthday_timestamp) > date('md') ? date('Y') - date('Y', $birthday_timestamp) - 1 : date('Y') - date('Y', $birthday_timestamp);
答案 12 :(得分:3)
我发现这个脚本可靠。它采用日期格式为YYYY-mm-dd,但可以很容易地修改其他格式。
/*
* Get age from dob
* @param dob string The dob to validate in mysql format (yyyy-mm-dd)
* @return integer The age in years as of the current date
*/
function getAge($dob) {
//calculate years of age (input string: YYYY-MM-DD)
list($year, $month, $day) = explode("-", $dob);
$year_diff = date("Y") - $year;
$month_diff = date("m") - $month;
$day_diff = date("d") - $day;
if ($day_diff < 0 || $month_diff < 0)
$year_diff--;
return $year_diff;
}
答案 13 :(得分:3)
i18n:
function getAge($birthdate, $pattern = 'eu')
{
$patterns = array(
'eu' => 'd/m/Y',
'mysql' => 'Y-m-d',
'us' => 'm/d/Y',
);
$now = new DateTime();
$in = DateTime::createFromFormat($patterns[$pattern], $birthdate);
$interval = $now->diff($in);
return $interval->y;
}
// Usage
echo getAge('05/29/1984', 'us');
// return 28
答案 14 :(得分:3)
function dob ($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--;
return $year_diff;
}
答案 15 :(得分:2)
使用DateTime对象
尝试其中任何一个$hours_in_day = 24;
$minutes_in_hour= 60;
$seconds_in_mins= 60;
$birth_date = new DateTime("1988-07-31T00:00:00");
$current_date = new DateTime();
$diff = $birth_date->diff($current_date);
echo $years = $diff->y . " years " . $diff->m . " months " . $diff->d . " day(s)"; echo "<br/>";
echo $months = ($diff->y * 12) + $diff->m . " months " . $diff->d . " day(s)"; echo "<br/>";
echo $weeks = floor($diff->days/7) . " weeks " . $diff->d%7 . " day(s)"; echo "<br/>";
echo $days = $diff->days . " days"; echo "<br/>";
echo $hours = $diff->h + ($diff->days * $hours_in_day) . " hours"; echo "<br/>";
echo $mins = $diff->h + ($diff->days * $hours_in_day * $minutes_in_hour) . " minutest"; echo "<br/>";
echo $seconds = $diff->h + ($diff->days * $hours_in_day * $minutes_in_hour * $seconds_in_mins) . " seconds"; echo "<br/>";
答案 16 :(得分:2)
此功能将以年为单位返回年龄。输入值是格式化日期(YYYY-MM-DD)出生日期字符串,例如:2000-01-01
它适用于日精度
function getAge($dob) {
//calculate years of age (input string: YYYY-MM-DD)
list($year, $month, $day) = explode("-", $dob);
$year_diff = date("Y") - $year;
$month_diff = date("m") - $month;
$day_diff = date("d") - $day;
// if we are any month before the birthdate: year - 1
// OR if we are in the month of birth but on a day
// before the actual birth day: year - 1
if ( ($month_diff < 0 ) || ($month_diff === 0 && $day_diff < 0))
$year_diff--;
return $year_diff;
}
干杯,nira
答案 17 :(得分:2)
这是我根据年,月,日的特定年龄回报计算DOB的功能
function ageDOB($y=2014,$m=12,$d=31){ /* $y = year, $m = month, $d = day */
date_default_timezone_set("Asia/Jakarta"); /* can change with others time zone */
$ageY = date("Y")-intval($y);
$ageM = date("n")-intval($m);
$ageD = date("j")-intval($d);
if ($ageD < 0){
$ageD = $ageD += date("t");
$ageM--;
}
if ($ageM < 0){
$ageM+=12;
$ageY--;
}
if ($ageY < 0){ $ageD = $ageM = $ageY = -1; }
return array( 'y'=>$ageY, 'm'=>$ageM, 'd'=>$ageD );
}
这个怎么用呢
$age = ageDOB(1984,5,8); /* with my local time is 2014-07-01 */ echo sprintf("age = %d years %d months %d days",$age['y'],$age['m'],$age['d']); /* output -> age = 29 year 1 month 24 day */
答案 18 :(得分:1)
//replace / with - so strtotime works
$dob = strtotime(str_replace("/","-",$birthdayDate));
$tdate = time();
return date('Y', $tdate) - date('Y', $dob);
答案 19 :(得分:1)
如何启动此查询并让MySQL为您计算:
SELECT
username
,date_of_birth
,(PERIOD_DIFF( DATE_FORMAT(CURDATE(), '%Y%m') , DATE_FORMAT(date_of_birth, '%Y%m') )) DIV 12 AS years
,(PERIOD_DIFF( DATE_FORMAT(CURDATE(), '%Y%m') , DATE_FORMAT(date_of_birth, '%Y%m') )) MOD 12 AS months
FROM users
结果:
r2d2, 1986-12-23 00:00:00, 27 , 6
用户有27年零6个月(整整一个月)
答案 20 :(得分:1)
使用带有DD / MM / YYYY的strtotime时出现问题。你不能使用那种格式。而不是它你可以使用MM / DD / YYYY(或许多其他像YYYYMMDD或YYYY-MM-DD),它应该正常工作。
答案 21 :(得分:1)
我是这样做的。
$geboortedatum = 1980-01-30 00:00:00;
echo leeftijd($geboortedatum)
function leeftijd($geboortedatum) {
$leeftijd = date('Y')-date('Y', strtotime($geboortedatum));
if (date('m')<date('m', strtotime($geboortedatum)))
$leeftijd = $leeftijd-1;
elseif (date('m')==date('m', strtotime($geboortedatum)))
if (date('d')<date('d', strtotime($geboortedatum)))
$leeftijd = $leeftijd-1;
return $leeftijd;
}
答案 22 :(得分:1)
遵循第一个逻辑,你必须在比较中使用=。
<?php
function age($birthdate) {
$birthdate = strtotime($birthdate);
$now = time();
$age = 0;
while ($now >= ($birthdate = strtotime("+1 YEAR", $birthdate))) {
$age++;
}
return $age;
}
// Usage:
echo age(implode("-",array_reverse(explode("/",'14/09/1986')))); // format yyyy-mm-dd is safe!
echo age("-10 YEARS") // without = in the comparison, will returns 9.
?>
答案 23 :(得分:1)
以下作品对我来说很有用,似乎比已经给出的例子简单得多。
$dob_date = "01";
$dob_month = "01";
$dob_year = "1970";
$year = gmdate("Y");
$month = gmdate("m");
$day = gmdate("d");
$age = $year-$dob_year; // $age calculates the user's age determined by only the year
if($month < $dob_month) { // this checks if the current month is before the user's month of birth
$age = $age-1;
} else if($month == $dob_month && $day >= $dob_date) { // this checks if the current month is the same as the user's month of birth and then checks if it is the user's birthday or if it is after it
$age = $age;
} else if($month == $dob_month && $day < $dob_date) { //this checks if the current month is the user's month of birth and checks if it before the user's birthday
$age = $age-1;
} else {
$age = $age;
}
我已经测试并积极使用此代码,它看起来有点麻烦,但使用和编辑非常简单,并且非常准确。
答案 24 :(得分:1)
这个问题的最佳答案是可以的,但只考虑一个人出生的那一年,我为了自己的目的而调整它来计算出日期和月份。但是认为值得分享。
这可以通过用户DOB的时间戳来实现,但可以随意更改
$birthDate = date('d-m-Y',$usersDOBtimestamp);
$currentDate = date('d-m-Y', time());
//explode the date to get month, day and year
$birthDate = explode("-", $birthDate);
$currentDate = explode("-", $currentDate);
$birthDate[0] = ltrim($birthDate[0],'0');
$currentDate[0] = ltrim($currentDate[0],'0');
//that gets a rough age
$age = $currentDate[2] - $birthDate[2];
//check if month has passed
if($birthDate[1] > $currentDate[1]){
//user birthday has not passed
$age = $age - 1;
} else if($birthDate[1] == $currentDate[1]){
//check if birthday is in current month
if($birthDate[0] > $currentDate[0]){
$age - 1;
}
}
echo $age;
答案 25 :(得分:1)
由于闰年,仅从一个日期中减去一个日期并将其置于年数之上是不明智的。要像人类一样计算年龄,你需要这样的东西:
$birthday_date = '1977-04-01';
$age = date('Y') - substr($birthday_date, 0, 4);
if (strtotime(date('Y-m-d')) - strtotime(date('Y') . substr($birthday_date, 4, 6)) < 0)
{
$age--;
}
答案 26 :(得分:1)
如果你想只追求年龄,那么就有一种超级简单的方法。将格式为“YYYYMMDD”的日期视为数字并将其减去。之后通过将结果除以10000来取消MMDD部分并将其降低。简单而且永不失败,甚至考虑到了傻瓜和当前的服务器时间;)
由于Birthays或大多数是在出生地点的完整日期提供的,并且它们与当前的当地时间(实际进行年龄检查)有关。
(resPt, readArray board resPt)
所以,如果你想在生日时检查某个时区的某个人是18岁或21岁或者100岁以下(从不关注原始时区),这是我的方法
答案 27 :(得分:1)
如果你似乎无法使用一些较新的功能,那么这就是我掀起的东西。可能比你需要的更多,我确信有更好的方法,但它很容易阅读,所以它应该做的工作:
function get_age($date, $units='years')
{
$modifier = date('n') - date('n', strtotime($date)) ? 1 : (date('j') - date('j', strtotime($date)) ? 1 : 0);
$seconds = (time()-strtotime($date));
$years = (date('Y')-date('Y', strtotime($date))-$modifier);
switch($units)
{
case 'seconds':
return $seconds;
case 'minutes':
return round($seconds/60);
case 'hours':
return round($seconds/60/60);
case 'days':
return round($seconds/60/60/24);
case 'months':
return ($years*12+date('n'));
case 'decades':
return ($years/10);
case 'centuries':
return ($years/100);
case 'years':
default:
return $years;
}
}
使用示例:
echo 'I am '.get_age('September 19th, 1984', 'days').' days old';
希望这有帮助。
答案 28 :(得分:0)
编写一个PHP脚本来计算一个人的当前年龄。
样本出生日期:11.4.1987
示例解决方案:
PHP代码:
<?php
$bday = new DateTime('11.4.1987'); // Your date of birth
$today = new Datetime(date('m.d.y'));
$diff = $today->diff($bday);
printf(' Your age : %d years, %d month, %d days', $diff->y, $diff->m, $diff->d);
printf("\n");
?>
样本输出:
您的年龄:30岁零3个月0天
答案 29 :(得分:0)
您可以使用这个简单的功能
function getage($strdate)
{
$dob = explode("-",$strdate);
if(count($dob)!=3){return 0;}
$y = $dob[0];$m = $dob[1];$d = $dob[2];
if(strlen($y)!=4){return 0;}
if(strlen($m)!=2){return 0;}
if(strlen($d)!=2){return 0;}
$y += 0;$m += 0;$d += 0;
if($y==0) return 0;
$rage = date("Y") - $y;
if(date("m")<$m)
{
$rage-=1;
}else{
if((date("m")==$m)&&(date("d")<$d))
{$rage-=1;}
}
return $rage;
}
示例:
$date = '1992-09-12';
echo 'My age is '. getage($date);
//return My age is 23
以下是演示Age Calculator
答案 30 :(得分:0)
这是更简单的过程,适用于dd / mm / yyyy和dd-mm-yyyy两种格式。这对我来说很棒:
<?php
$birthday = '26/04/1994';
$dob = strtotime(str_replace("/", "-", $birthday));
$tdate = time();
echo date('Y', $tdate) - date('Y', $dob);
?>
如果您关心自己的时区,只需在date_default_timezone_set("Asia/Dhaka");
上方添加时区即可。
答案 31 :(得分:0)
这是计算年龄的简单函数:
<?php
function age($birthDate){
//date in mm/dd/yyyy format; or it can be in other formats as well
//explode the date to get month, day and year
$birthDate = explode("/", $birthDate);
//get age from date or birthdate
$age = (date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md")
? ((date("Y") - $birthDate[2]) - 1)
: (date("Y") - $birthDate[2]));
return $age;
}
?>
<?php
echo age('11/05/1991');
?>
答案 32 :(得分:0)
我使用以下方法计算年龄:
$oDateNow = new DateTime();
$oDateBirth = new DateTime($sDateBirth);
// New interval
$oDateIntervall = $oDateNow->diff($oDateBirth);
// Output
echo $oDateIntervall->y;
答案 33 :(得分:0)
试试这个:
<?php
$birth_date = strtotime("1988-03-22");
$now = time();
$age = $now-$birth_date;
$a = $age/60/60/24/365.25;
echo floor($a);
?>
答案 34 :(得分:-1)
准备使用返回完整结果的功能(年,月,日,小时,分钟,秒)。 关于当前日期之上的日期,它将返回对倒计时功能有用的负值。
/* By default,
* format is 'us'
* and delimiter is '-'
*/
function date_calculate($input_date, $format = 'us', $delimiter = '-')
{
switch (strtolower($format)) {
case 'us': // date in 'us' format (yyyy/mm/dd), like '1994/03/01'
list($y, $m, $d) = explode($delimiter, $input_date);
break;
case 'fr': // date in 'fr' format (dd/mm/yyyy), like '01/03/1994'
list($d, $m, $y) = explode($delimiter, $input_date);
break;
default: return null;
}
$tz = new \DateTimeZone('UTC'); // TimeZone. Not required but can be useful. By default, server TimeZone will be returned
$format_date = sprintf('%s-%s-%s', $y, $m, $d);
$cur_date = new \DateTime(null, $tz);
$user_date = new \DateTime($format_date, $tz);
$interval = $user_date->diff($cur_date);
return [
'year' => $interval->format('%r%y'),
'month' => $interval->format('%r%m'),
'day' => $interval->format('%r%d'),
'hour' => $interval->format('%r%H'),
'min' => $interval->format('%r%i'),
'sec' => $interval->format('%r%s'),
];
}
var_dump(date_calculate('06/09/2016', 'fr', '/'));
var_dump(date_calculate('2016-09-06'));
更多++:
DateInterval::format
- &gt; http://nl1.php.net/manual/en/dateinterval.format.php DateTime::diff
- &gt; http://nl1.php.net/manual/en/datetime.diff.php 答案 35 :(得分:-2)
纵观所提供的解决方案,我总是想到IT领域现代教育的弊端。大多数开发人员都忘记了即使是现代CPU也会遇到执行条件运算符,而算术运算,特别是2的幂运算速度更快。 因此,我的目的是在没有任何优化的情况下在PHP线程中显示此解决方案:
list($year,$month,$day) = explode("-",$birthday);
$age=floor(((date("Y")-$year)*512+(date("m")-$month)*32+date("d")-$day)/512);
在其他语言中,它们具有严格的类型定义并且能够替换*和/ by shift, 这个公式将会飞#34;同样更改除数,您可以计算月,周和等的年龄。 小心,差异中操作数的顺序是必不可少的
答案 36 :(得分:-4)
此功能正常。这是Parkyprg
代码的略微改进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;
}