gpt4 book ai didi

php - 如何将 Eastern Time Zone 转换为 CENTRAL TIME ZONE

转载 作者:可可西里 更新时间:2023-10-31 23:57:39 27 4
gpt4 key购买 nike

我有一个在东部时区的时间,但我想将它调整为中部时区。两个时区都在美国。我从来没有这样做过?我不知道如何转换它。请帮帮我好吗?

最佳答案

这是一种可能的方法:

$dt = new DateTime('2011-02-22 16:15:20', new DateTimeZone('America/New_York'));
echo $dt->format('r') . PHP_EOL;

$dt->setTimezone(new DateTimeZone('America/Chicago'));
echo $dt->format('r') . PHP_EOL;

您可以获得可用时区的列表:

print_r(DateTimeZone::listIdentifiers());

关于php - 如何将 Eastern Time Zone 转换为 CENTRAL TIME ZONE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5079811/

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