Very small php function to calculate age from date of birth
• May 16th, 2012• Category: PHP
The bellow 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

Wow post…..