gpt4 book ai didi

php - 获取给定位置的时区偏移

转载 作者:可可西里 更新时间:2023-11-01 12:41:12 25 4
gpt4 key购买 nike

是否可以在 PHP 中获取给定位置的时区偏移量?例如。当给定位置“悉尼/澳大利亚”时,时区偏移量为“+1100”。此功能的好处是牢记夏令时(即它知道夏令时并根据此调整偏移量)。

最佳答案

您可以使用 DateTimeZone类。

<?php
$timezone = new DateTimeZone("Australia/Sydney");
$offset = $timezone->getOffset(new DateTime("now")); // Offset in seconds
echo ($offset < 0 ? '-' : '+').round($offset/3600).'00'; // prints "+1100"
?>

关于php - 获取给定位置的时区偏移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3910500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com