Jump to content

[SOLVED] Calculate Age


Northern Flame

Recommended Posts

getdate is a red herring.

 

try

<?php
$yob = 1978;
$mob = 1;
$dob = 2;

echo calcAge ($yob, $mob, $dob);             // 30

function calcAge ($y,$m,$d)
{
    $age = date('Y') - $y;    
    return date('md') < sprintf('%02d%02d', $m, $d) ? $age-1 : $age;
}

?>

Link to comment
https://forums.phpfreaks.com/topic/84215-solved-calculate-age/#findComment-428853
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.