PHP strtotime() function wrong by 1 hour?

前端 未结 3 1346
难免孤独
难免孤独 2021-01-04 04:53

I am converting dates and times into timestamps using PHP before they are inserted into my MySQL database.

My problem is that when i use PHP\'s strtotime function th

相关标签:
3条回答
  • 2021-01-04 05:30

    London time zone is expressed in British Summer Time during Summer. Having said that, it's a good practice to store time in UTC and present the time to end user in either UTC or in THEIR local time.

    It is also probably wise to ensure that your system time is UTC.

    0 讨论(0)
  • 2021-01-04 05:40

    Before PHP 5.3 the strtotime had problems calculating time if you added or deducted months and days etc. That was fixed so you now can tell specifically how you want it calculated, if you are below PHP 5.3 I would recommend doing the date calculating in mysql or upgrade your PHP version.

    0 讨论(0)
  • Europe/London time is not GMT time during Daylight Savings. You need to set it to UTC.

    date_default_timezone_set('UTC');

    date_default_timezone_set('GMT'); may work, but, as Kenneth notes in a comment below, it is deprecated.

    0 讨论(0)
提交回复
热议问题