Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.