获取 UNIX 时间戳的正确小时
我认为这是一个愚蠢的问题,但似乎我找不到答案。
我有这个时间戳:1295598602。
在我的 php 脚本中,我有:
$date = date('Ymd', 1295598602); $小时 = 日期('H', 1295598602) 。 ':00';
这将返回:
日期:2011-01-21
时间:03:00
现在我去了一个在线转换网站来测试这一点。我使用了这个。 但对于这个时间戳值来说似乎是
2011 年 1 月 21 日星期五 08:30:02 GMT
现在,哪一个是正确的?
I think this is a stupid question, but seems that I cannot find the answer.
I have this timestamp: 1295598602.
In my php script I have:
$date = date('Y-m-d', 1295598602);
$hour = date('H', 1295598602) . ':00';
This returns:
Date: 2011-01-21
Hour: 03:00
Now I went to an online conversion site to test this. I used this one.
But it seems that for this timestamp value it is
Fri, 21 Jan 2011 08:30:02 GMT
Now, which one is correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用正确的时区:
Use correct timezone:
在 GMT / UTC 中(它们几乎但不完全完全是相同)该时间戳确实是 2011 年 1 月 21 日星期五 08:30:02 GMT。
如果您位于不同的时区但始终需要 GMT,则需要使用
gmdate()
函数而不是date()
。In GMT / UTC (they're almost but not quite exactly the same) that timestamp is indeed Fri, 21 Jan 2011 08:30:02 GMT.
If you're in a different timezone but always want GMT you'll need to use the
gmdate()
function instead ofdate()
.两者都是正确的。在代码片段中,PHP 根据时区进行调整。尝试
date_default_timezone_set('UTC');
获取正确的未调整值。Both are correct. In the code snippet PHP adjusts for timezone. Try
date_default_timezone_set('UTC');
to get proper unadjusted values.另一个选项是为脚本设置默认时区。
例如,
会给您带来与在线转换工具显示的相同结果。
PHP 中有许多与时区相关的函数,可以让您修改显示的时区。
您可以查看 PHP 文档以获取选项列表:http://www. php.net/manual/en/ref.datetime.php
Another option is to set the default timezone for your script.
For example,
would get you the same result as the online conversion tool is showing.
There are a number of timezone-related function in PHP that will allow you to modify which time zone is being shown.
You can check the PHP docs for a list of your options: http://www.php.net/manual/en/ref.datetime.php
根据 date() 函数说明,
根据 time() 函数描述,它返回 GMT 时间戳。
因此,PHP 会转换为您的时区,而 onlineconversion.com 则不会。
According to date() function description,
And according to time() function description, it returns GMT timestamp.
So, PHP does conversion to your time zone, while onlineconversion.com does not.