Pomyślałem, że wrzucę to tutaj, ponieważ wydaje się, że jest to najpopularniejsza forma tego pytania.
Przeprowadziłem 100-letnie porównanie trzech najpopularniejszych funkcji wieku, jakie mogłem znaleźć dla PHP, i opublikowałem wyniki (a także funkcje) na moim blogu .
Jak widać nie wszystkie 3 funcs preform dobrze tylko z różnicą na 2. funkcji. Moja sugestia oparta na moich wynikach to użycie trzeciej funkcji, chyba że chcesz zrobić coś konkretnego w urodziny danej osoby, w takim przypadku pierwsza funkcja zapewnia prosty sposób na zrobienie tego dokładnie.
Znaleziono mały problem z testem i kolejny problem z drugą metodą! Wkrótce na blogu pojawi się aktualizacja! Na razie zwróciłbym uwagę, że druga metoda jest nadal najpopularniejsza, którą znajduję w Internecie, a mimo to jest to ta, w której znajduję najwięcej niedokładności!
Moje sugestie po mojej 100-letniej recenzji:
Jeśli chcesz czegoś bardziej wydłużonego, abyś mógł uwzględnić takie okazje jak urodziny i takie:
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');
Ale jeśli po prostu chcesz znać wiek i nic więcej, to:
function getAge($date) { // Y-m-d format
return intval(substr(date('Ymd') - date('Ymd', strtotime($date)), 0, -4));
}
getAge('1980-02-29');
Kluczowa uwaga dotycząca strtotime
metody:
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.
mktime()
. wygląda na to, że php przeliczył sięstrtotime()
z tym formatem.