0

我已经设置了我的 mysql db:SET time_zone = 'America/Los_Angeles'; 并在 php

date_default_timezone_set('America/Los_Angeles');   

但是当我添加

$time = strtotime ("+2 minutes");

$time2 = gmdate("Y-m-d H:i:s", $time);  

到 db 当我从 mysql 得到它时,我错了一个小时,如下所示:

        $query ="select UNIX_TIMESTAMP("time"), time2 from tbl; 
        if ($result = $conn->query($query)) {
            while ($row = $result->fetch_assoc()) {
                $unix_time = $row["UNIX_TIMESTAMP("time")"];
                $unix_time2 = $row["time2"];
            }
            $result->close();
        }       ,

echo gmdate("Y-m-d H:i:s", $unix_time)." | ".gmdate("Y-m-d H:i:s", $unix_time2)." "; 

显示:

2010-12-26 01:06:48|2010-12-26 02:06:24

4

1 回答 1

0

unix_timestamp()将检索您当前处于夏令时模式的本地时间戳。gmdate()在没有 DST 的 Greenwhich 标准时间(又名 UTC)下工作,因此您将获得 1 小时的差异。使用date()而不是gmdate()使用 DST 意识。

于 2010-12-26T10:56:06.337 回答