php function to calculate age from date of birth


Rakesh Kumar

<?php

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

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

?>

View original post

One thought on “php function to calculate age from date of birth

Leave a comment