date() 处理的时间戳间隔计算不正确
我的数据库中有两个 unix 时间戳,我将它们相减以获得以秒为单位的时间间隔:
$interval = $array["time2"] - $array["time1"]; // When echoed, $interval = 3
但是,当我通过 date()
运行此 $interval 时,如下所示:
echo date("g\h i\m", $interval);
这 3 秒突然间回显到:
7点00分
有谁知道为什么 date() 可能会花费这三秒并将它们以某种方式延长到 7 小时的间隔吗?
I have two unix timestamps in my database that I am subtracting to get a time interval in seconds:
$interval = $array["time2"] - $array["time1"]; // When echoed, $interval = 3
However, when I run this $interval through date()
, like so:
echo date("g\h i\m", $interval);
these 3 seconds all of a sudden echo to:
7h00m
Does anyone have any idea why date() might be taking these three seconds and stretching them out into a 7 hour interval somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
date()
的第二个参数是时间戳(自格林尼治标准时间 1970 年 1 月 1 日午夜以来的秒数)。您的时间间隔可能相当于您所在时区相对于该日期的上午 7 点。The second argument to
date()
is a timestamp (seconds since midnight, Jan 1, 1970 GMT). Your interval is probably equating to 7am in your timezone relative to this date.