Answers for "php calculate age year, month, day"

PHP
0

calcul age php datetime

function get_age( $date ) { 
    $age = date('Y') - $date; 
   if (date('md') < date('md', strtotime($date))) { 
       return $age - 1; 
   } 
   return $age; 
}
Posted by: Guest on June-10-2020
0

get age in months php

$interval = date_diff(date_create(), date_create('2008-01-01 10:30:00'));
echo $interval->format("You are  %Y Year, %M Months, %d Days, %H Hours, %i Minutes, %s Seconds Old");
Posted by: Guest on April-29-2021

Code answers related to "php calculate age year, month, day"

Browse Popular Code Answers by Language