这个问题在这里已经有一个答案:>
PHP strtotime() function wrong by 1 hour?3个
我使用strtotime从1970年1月1日开始获得秒数,但是我不明白为什么如果时钟设置为12.00AM,我会得到-3600,而当时钟设置为1 AM时,我得到0,那么1 HOUR呢?这是时区的问题吗?
原文链接:https://www.f2er.com/php/132203.html我使用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)
更新时间:欧洲/柏林