Friday 1 June 2012

php function to calculate age from date of birth


This  simple function will calculate  age from a date of birth

<?php

function get_age($birth_date){
 return floor((time() - strtotime($birth_date))/31556926);
 }

echo " I am ".get_age("2000-05-10") ." years old";

?>

Output:I am 12 years old.

No comments:

Post a Comment