I'm building a registration system with PHP and need to create a function that takes a date of birth (as a timestamp) and returns the age on (April 31). What I have now is:
<?php
function get_adj_age($dob)
{
$age = (time()-$dob);
$today = strtotime(date('F d', time()));
$diff = ($cutoff - $today);
$adj_age = floor(($age+$diff)/31556926);
return $adj_age;
}
For some reason this is breaking my brain. Anyone mind checking me on this? Cheers.
return $adj_age;does anything outside of the scope of a function (except raise an error when not in an included file). – PhpMyCoder Jan 8 '12 at 7:53$todayshould just be return value oftime()instead ofstrtotime()call. – anubhava Jan 8 '12 at 7:57