Jump to content

Date and Time Help


spires

Recommended Posts

Hi

 

I need to be able to to set the time back 1 hour, as for some reason, the time function is an hour ahead.

 

 

Example:

$DT2 = date("m/d/Y H:i:s");

echo $DT2;

//  03/19/2010 17:14:43

//  Should be:  03/19/2010 16:14:43

 

 

I have tried the following but this did not work:

$DT2 = date("m/d/Y H:i:s", -time(3600));

This produced - 10/15/1929 06:45:17

 

As you can see, both time and date are now out.

 

Any help would be great.

 

Thanks :)

Link to comment
https://forums.phpfreaks.com/topic/195817-date-and-time-help/
Share on other sites

You should set set the default timezone to conform to E_STRICT error settings and to fix your problem:

http://php.net/manual/en/function.date-default-timezone-set.php

 

You should change this value in php.ini or alike, as a wrong timezone can be a problem when coding.

Link to comment
https://forums.phpfreaks.com/topic/195817-date-and-time-help/#findComment-1028649
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.