524 views
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.
Submitted by miguelSantirso over 2 years ago — last modified less than a minute ago