Answers for "check if age is greater than three from date of birth php"

PHP
5

php get age from dob

Simple method for calculating Age from dob: $_age = floor((time() - strtotime('1986-09-16')) / 31556926); 31556926 is the number of seconds in a year.
Posted by: Guest on March-10-2020

Code answers related to "check if age is greater than three from date of birth php"

Browse Popular Code Answers by Language