午夜时间的 strftime 行为

strftime behavior with time at midnight

给定以下日期和时间:25. February 2018 00:00 (ISO 8601 2018-02-25T00:00:00+00:00)。与 UNIX 时间戳的对话是:1519516800

使用 PHP strftime:

echo strftime("%a %d-%m-%Y", 1519516800); 

给我

Sat 24-02-2018

我期望的地方

Sun 25-02-2018

如何用新的一天强制解释? (在本例中为第 25 位)。

谢谢!

如果您希望使用 UTC,则需要 configure it 某处:

date_default_timezone_set('UTC');
echo strftime("%a %d-%m-%Y", 1519516800);