mktime returning wrong value?
Posted: Tue Aug 18, 2009 11:31 am
Hi,
I'm trying to use mktime to return tomorrows date. I read something at one point that this might be a php bug.
Returns the output...
1250665200
Why would this be?
I'm trying to use mktime to return tomorrows date. I read something at one point that this might be a php bug.
Code: Select all
$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
echo $tomorrow;
1250665200
Why would this be?