This is a little confusing and I'm not sure why the date/time is being reported incorrectly.
The time is being reported one hour ahead of what it actually is.
Here is the php code I'm using to test.
The server is a linux box (FC4), and I've verified using the date command.
Here are the results:
Webpage:
Command-line:
Anybody have any clue as to what might be going on?
Oh btw, the timezone/dst value reported by the date command in php is being reported: America/New_York 1 - and yes that is the proper timezone.
The time is being reported one hour ahead of what it actually is.
Here is the php code I'm using to test.
Code:
<?php
print date('d M Y, H:i');
?>
Here are the results:
Webpage:
Code:
25 Mar 2008, 11:32
Code:
# date
Tue Mar 25 10:32:27 EST 2008
Anybody have any clue as to what might be going on?
Oh btw, the timezone/dst value reported by the date command in php is being reported: America/New_York 1 - and yes that is the proper timezone.