如何查找DST开始和结束给定时区的日期?

时间:2013-11-14 04:13:57

标签: php date timestamp dst

  

Clock changes in "America/New York":
      当地日光时间即将到达时       2013年11月3日星期日,02:00:00时钟向后转1小时至
      2013年11月3日星期日,01:00:00当地标准时间

     

Clock changes in "Europe/Berlin":
      当地日光时间即将到达时       2013年10月27日星期日,03:00:00时钟向后转1小时至
      2013年10月27日星期日,02:00:00当地标准时间

如何使用PHP获取这些日期?
例如:如何在没有谷歌的情况下获取柏林2014年的“2013年10月27日星期日02:00:00”日期;)

如果我有一个位于该小时内的unixtimestamp,它会指向第一个还是最后一个小时?

2 个答案:

答案 0 :(得分:3)

我认为getTransitions就是你所追求的目标:

$timezone = new DateTimeZone("Europe/London");
$transitions = $timezone->getTransitions();

我承认,这有点像是一个眼睛,如果你对为什么在数组中返回多个条目感到困惑,那是因为确切的日期是不同的,因为在大多数地区它是基于当天的一个月的一周(例如“十月的最后一个星期天”)不是特定的日期。对于上面的内容,如果您只想要即将到来的转换,则可以添加timestamp_being参数:

$timezone = new DateTimeZone("Europe/London");
$transitions = $timezone->getTransitions(time());

答案 1 :(得分:2)

使用getTransitions可以获得所有转换(从php 5.3开始和结束)

这适用于PHP< 5.3

<?php
/** returns an array with two elements for spring and fall DST in a given year
 *  works in PHP_VERSION < 5.3
 * 
 * @param integer $year
 * @param string $tz timezone
 * @return array
 **/
function getTransitionsForYear($year=null, $tz = null){
    if(!$year) $year=date("Y");

    if (!$tz) $tz = date_default_timezone_get();
    $timeZone = new DateTimeZone($tz);

    if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
        $transitions = $timeZone->getTransitions(mktime(0, 0, 0, 2, 1, $year),mktime(0, 0, 0, 11, 31, $year));
        $index=1;
    } else {
        // since 1980 it is regular, the 29th element is 1980-04-06
            // change this in your timezone
            $first_regular_index=29;
            $first_regular_year=1980;
        $transitions = $timeZone->getTransitions();
        $index=($year-$first_regular_year)*2+$first_regular_index;
    }
    return array_slice($transitions, $index, 2);
}