如何在 PHP 中自动检测夏令时?

2022-01-16 00:00:00 timezone php

如何在 PHP 中自动检测夏令时?

How can I detect day light savings automatically in PHP?

推荐答案

echo date('I');

I(大写 i)是 1/0,表示夏令时当前是否有效.

The I (capital i) is a 1/0 denoting whether or not daylight saving is currently in effect.

http://php.net/manual/en/function.date.php

希望对你有帮助.

相关文章