(PHP 5 >= 5.2.0)
DateTimeZone::getTransitions — タイムゾーンの変遷を返す
オブジェクト指向型
手続き型
手続き型のみ: timezone_open() が返す DateTimeZone オブジェクト
開始時のタイムスタンプ。
終了時のタイムスタンプ。
成功した場合にタイムゾーンの遷移を表す連想配列の配列、 失敗した場合に FALSE を返します。
バージョン | 説明 |
---|---|
5.3.0 | オプションの timestamp_begin および timestamp_end が追加されました。 |
例1 timezone_transitions_get() の例
<?php
$timezone = new DateTimeZone("Europe/London");
$transitions = $timezone->getTransitions();
print_r(array_slice($transitions, 0, 3));
?>
上の例の出力は、 たとえば以下のようになります。
Array ( [0] => Array ( [ts] => -9223372036854775808 [time] => -292277022657-01-27T08:29:52+0000 [offset] => 3600 [isdst] => 1 [abbr] => BST ) [1] => Array ( [ts] => -1691964000 [time] => 1916-05-21T02:00:00+0000 [offset] => 3600 [isdst] => 1 [abbr] => BST ) [2] => Array ( [ts] => -1680472800 [time] => 1916-10-01T02:00:00+0000 [offset] => 0 [isdst] => [abbr] => GMT ) )