1 2 3 4
<?php function getAge($birthdate) { return floor((time() - strtotime($birthdate))/(60*60*24*365.2425)); ...
PHP How to get age from given b...
by gordon0580.myopenid.com,
February 08, 2010 04:30,
1 refactoring
1 2 3
<?php class User extends AppModel { ...
PHP On User Registration Function
by gordon0580.myopenid.com,
September 21, 2009 04:06
In cakePHP, you can do this.
How to get age from given b...