今天我注意到我将Olson时区ID转换并显示到城市和GMT偏移的脚本产生了一些非常奇怪的结果:阿根廷区引起了我的注意,因为它们显示的标准(非DST)时间偏移为±0000 in参考GMT / UTC。
我检查了我的代码并在逻辑中发现了一个小错误,但是它与差异无关,所以我通过timezonedb
将pecl
更新为版本2012.8
,但它是仍然返回错误的偏移...
以下是一些代码,它返回America/Argentina/San_Luis
时区的最后3个更改:
$timezone = new DateTimeZone('America/Argentina/San_Luis');
$transitions = $timezone->getTransitions();
echo '<pre>';
print_r(array_slice($transitions, -3, null, true));
echo '</pre>';
这是输出:
Array
(
[59] => Array
(
[ts] => 1223784000
[time] => 2008-10-12T04:00:00+0000
[offset] => -10800
[isdst] => 1
[abbr] => WARST
)
[60] => Array
(
[ts] => 1236481200
[time] => 2009-03-08T03:00:00+0000
[offset] => -14400
[isdst] =>
[abbr] => WART
)
[61] => Array
(
[ts] => 1255233600
[time] => 2009-10-11T04:00:00+0000
[offset] => -10800
[isdst] => 1
[abbr] => WARST
)
)
如您所见,索引59
和61
是DST偏移,而索引60
是标准时间偏移。
但是,如果您选中Time&Date,则标准偏移量应为-10800
(3小时),而不是-14400
:
Standard time zone: UTC/GMT -3 hours
No daylight saving time in 2012
Time zone abbreviation: ART - Argentina Time
事实上,即使是abbr
也是错误的(应该是ART
,因为在2009-10-10 DST已经停止了。)
这里出了什么问题?我很确定这是无关紧要的,但如果重要的话,我正在运行PHP 5.4.6。
PS :我记得在阅读有关Olson数据库的一些法律问题时,这可能与此有关吗?
更新:我写了一个小脚本来比较PHP非DST偏移与this Wikipedia page:
function getStandardOffset($timezone)
{
$timezone = new DateTimeZone($timezone);
//$hemisphere = (ph()->Value($timezone->getLocation(), 'latitude') >= 0) ? 'north' : 'south';
$transitions = array_reverse(array_slice($timezone->getTransitions(), -3, null, true), true);
foreach ($transitions as $transition)
{
if ($transition['isdst'] == 1)
{
continue;
}
return sprintf('%+03d:%02u', $transition['offset'] / 3600, abs($transition['offset']) % 3600 / 60);
}
return false;
}
$diff = array();
$html = ph()->HTML->DOM(file_get_contents('http://en.wikipedia.org/wiki/List_of_tz_database_time_zones'));
$timezones = DateTimeZone::listIdentifiers();
foreach ($timezones as $timezone)
{
$offset = str_replace('−', '-', ph()->HTML->DOM($html, sprintf('//td/a[contains(text(), "%s")]/../..', $timezone), '0.td.4.a'));
if (strcmp($offset, getStandardOffset($timezone)) !== 0)
{
$diff[$timezone] = array
(
'php' => getStandardOffset($timezone),
'wiki' => $offset,
);
}
}
echo '<pre>';
print_r($diff);
echo '</pre>';
以下时区不同:
Array
(
[America/Argentina/San_Luis] => Array
(
[php] => -04:00
[wiki] => -03:00
)
[Antarctica/Casey] => Array
(
[php] => +08:00
[wiki] => +11:00
)
[Antarctica/Davis] => Array
(
[php] => +07:00
[wiki] => +05:00
)
)
这不是什么大不了的事,但我很好奇为什么会发生这种情况,因为我有最新版本的Olson tzdb。
答案 0 :(得分:1)
我将在这里举一例:
[60] => Array
(
[ts] => 1236481200
[time] => 2009-03-08T03:00:00+0000
[offset] => -14400
[isdst] =>
[abbr] => WART
)
但是,如果您检查时间和日期,标准偏移量应为-10800(3小时)而不是-14400
据我所知,这不是真的;根据{{3}},在那个时间(2009年3月3日),当没有夏令时时区被更改为UTC-4,如果有,则时区更改为UTC-3。虽然,文章中提到的日期是2015年3月14日而不是3月8日...我不确定是什么导致了这种差异。