602 visitas
Calculate an age
This functions calculates the age of someone, given its birth date or year:
PHP
- /**
- * Gets the age of an individual
- * @param int $timeStamp
- * @return int
- */
- function getAge($timeStamp) {
- $year = 60 * 60 * 24 * 365;
- }
I found this function here.
Enviado por miguelSantirso hace over 2 years — modificado por última vez hace less than a minute