Remy
Remy

Reputation:

Calculate years from date

I'm looking for a function that calculates years from a date in format: 0000-00-00. Found this function, but it wont work.

// Calculate the age from a given birth date
// Example: GetAge("1986-06-18");
function getAge($Birthdate)
{
  // Explode the date into meaningful variables
  list($BirthYear,$BirthMonth,$BirthDay) = explode("-", $Birthdate);
  // Find the differences
  $YearDiff = date("Y") - $BirthYear;
  $MonthDiff = date("m") - $BirthMonth;
  $DayDiff = date("d") - $BirthDay;
  // If the birthday has not occured this year
  if ($DayDiff < 0 || $MonthDiff < 0)
  $YearDiff--;
 }

echo getAge('1990-04-04');

outputs nothing :/
i have error reporting on but i dont get any errors

Upvotes: 16

Views: 22933

Answers (4)

Abhinav bhardwaj
Abhinav bhardwaj

Reputation: 2737

A single line function can work here

function calculateAge($dob) {
    return floor((time() - strtotime($dob)) / 31556926);
}

To calculate Age

 $age = calculateAge('1990-07-10');

Upvotes: 5

John Conde
John Conde

Reputation: 219794

An alternative way to do this is with PHP's DateTime class which is new as of PHP 5.2:

$birthdate = new DateTime("1986-06-18");
$today     = new DateTime();
$interval  = $today->diff($birthdate);
echo $interval->format('%y years');

See it in action

Upvotes: 18

Paolo Bergantino
Paolo Bergantino

Reputation: 488344

Your code doesn't work because the function is not returning anything to print.

As far as algorithms go, how about this:

function getAge($then) {
    $then_ts = strtotime($then);
    $then_year = date('Y', $then_ts);
    $age = date('Y') - $then_year;
    if(strtotime('+' . $age . ' years', $then_ts) > time()) $age--;
    return $age;
}
print getAge('1990-04-04'); // 19
print getAge('1990-08-04'); // 18, birthday hasn't happened yet

This is the same algorithm (just in PHP) as the accepted answer in this question.

A shorter way of doing it:

function getAge($then) {
    $then = date('Ymd', strtotime($then));
    $diff = date('Ymd') - $then;
    return substr($diff, 0, -4);
}

Upvotes: 40

Mike Mu
Mike Mu

Reputation: 1007

You need to return $yearDiff, I think.

Upvotes: 2

Related Questions