Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对服务器中的夏令时有疑问。
在 php.ini 中,我添加了以下行:
date.timezone = "Europe/Lisbon"
服务器时间戳很棒。但是几周前,里斯本已经进入夏季,现在是格林威治标准时间 +1000。
服务器上运行的脚本延迟了 1 小时...
我怎样才能解决这个问题?
谢谢,
强化学习
用作UTC您的时区。它基本上是格林威治标准时间,但没有夏令时。
UTC
而不是修改 php.ini 文件。
利用 date_default_timezone_set('timezone here');
date_default_timezone_set('timezone here');
所以试试..
date_default_timezone_set('Europe/Lisbon');