4

我已尝试使用此代码获取 EST 时区的当前日期,

$currentDate=date("Y-m-d h:i A");
$timezone='EST';
date_default_timezone_set($timezone);
$storedate=date("Y-m-d h:i A");
echo $currentDate."  ===  ".$storedate."<br/><br/>";

存储的日期显示延迟 1 小时。我认为这是因为夏令时。考虑到夏令时,请为我提供获取 EST 时区当前日期的最佳方法。

4

0 回答 0