1 | <?php |
2 | |
3 | function age($year, $month, $day) { |
4 | $diff = date_diff(date_create($year.'-'.$month.'-'.$day), date_create(date('Y-m-d'))); |
5 | return $diff->y; |
6 | } |
7 | |
8 | ?> |
Last active
Calculate the age of someone or something.
1 | <?php |
2 | |
3 | function age($year, $month, $day) { |
4 | $diff = date_diff(date_create($year.'-'.$month.'-'.$day), date_create(date('Y-m-d'))); |
5 | return $diff->y; |
6 | } |
7 | |
8 | ?> |