我想在澳大利亚/悉尼(不是时间)获得时区名称
http://php.net/manual/en/timezones.australia.php(设定时区)
$t = new DateTime('now');
$t->setTimeZone( new DateTimeZone('Australia/Sydney'));
echo $t->format("Y D M j H:i T");
结果= 2014年12月16日星期二17:54 EST
http://www.timeanddate.com/time/zones/aedt
在此网址中,澳大利亚/悉尼是AEDT。 为什么php返回EST?
答案 0 :(得分:1)
http://mm.icann.org/pipermail/tz-announce/2014-August/000023.html
Australia DST timezone abbreviation incorrect when using date_default_timezone_set
这是版本问题。
答案 1 :(得分:0)
希望这对你有用
$test = new DateTimeZone('Australia/Sydney');
$gmt = new DateTimeZone('AEDT');
$date = new DateTime('2011-12-25 00:00:00', $test);
$date->setTimezone($gmt);
echo $date->format('Y-m-d H:i:s');