Okay this is weird: today is 2004-10-28
echo date("Y-m-d"); // 2004-10-28 a Thursday
echo date("Y-m-d",strtotime("Monday")); // 2004-10-31 a Sunday
echo date("Y-m-d",strtotime("Sunday")); // 2004-10-31 a Sunday
echo date("Y-m-d",strtotime("next Monday")); //2004-11-07 a Sunday
echo date("Y-m-d",strtotime("next Sunday")); //2004-11-06 a Saturday
I just started receiving this error on both my local development webserver and on my domain.... What the hell is going on? Is daylight saving jacking it up?
Thanks in advance
-emrys