Hi guys, I'm having a bit of trouble with the mktime function. On my production server, if I execute the following:
echo '<p>' . mktime(24, 0,0, 8,29,2009) . ' - 12pm</p>';
echo '<p>' . mktime(23, 0,0, 8,29,2009) . ' - 11pm</p>';
echo '<p>' . mktime(22, 0,0, 8,29,2009) . ' - 10pm</p>';
And then convert those timestamps back to readable format (using www.unixtimestamp.com for quick conversion), the times are all off by one hour. I originally thought this was a problem with 2400 VS 0000, but that wouldn't account for the other dates being off.
Any ideas?