Forum Moderators: coopster

Message Too Old, No Replies

Q: date() in the future?

date function not returning system time?

         

HeadBut

2:26 am on Sep 7, 2006 (gmt 0)

10+ Year Member



This is returning a date 1 hour in the future?

$SBText .= date("F j, Y, g:i a");

How would I fix this?

eelixduppy

2:41 am on Sep 7, 2006 (gmt 0)



It should be returning the local system time. Check the date on your server to see if it is correct. It may also be an issue with your timezone settings.

Good luck!

HeadBut

3:20 am on Sep 7, 2006 (gmt 0)

10+ Year Member



I am using a Mac Powerbook G4 as a development machine with Apache, Mysql and php. The date & Time control panel says the Time Zone: MST and Closest City:Phoenix - USA

The time from php is 1 hour ahead and I seem to remember it was working properly a couple months ago.

Thanks!
M

dreamcatcher

6:52 am on Sep 7, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



$SBText .= date("F j, Y, g:i a", strtotime("-1 hour"));

dc