为什么strtotime(1970年1月1日)在PHP中返回-3600而不是0?

前端之家收集整理的这篇文章主要介绍了为什么strtotime(1970年1月1日)在PHP中返回-3600而不是0?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题在这里已经有一个答案:> PHP strtotime() function wrong by 1 hour?3个
我使用strtotime从1970年1月1日开始获得秒数,但是我不明白为什么如果时钟设置为12.00AM,我会得到-3600,而当时钟设置为1 AM时,我得到0,那么1 HOUR呢?这是时区的问题吗?
echo 'I Expect 0 Here '.strtotime('1st January 1970').'<br />';
//This gives me -3600

echo 'I Expect 3600 Here '.strtotime('1st January 1970 01.00AM'); 
//This gives me 0

P.S I’ve not set any Time Zone in my PHP file or I’ve not even
modified my .ini file (Fresh Installed XAMPP)

更新时间:欧洲/柏林

这很可能是由于您当地的 time zone.
输出的是什么
var_dump(date_default_timezone_get());

在那台机器上?
您还可以检查mktime和gmmktime之间的区别

echo " mktime: ",mktime(),"\n";
echo " gmmktime: ",gmmktime(),"\n";
原文链接:https://www.f2er.com/php/132203.html

猜你在找的PHP相关文章