Last active 1714041313

Calculate the age of someone or something.

Revision e2bf1821e14c1696c3d89b5cad5ab9e671e7efdf

age.php Raw
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?>