3

以下代码:

    // settings 1st alternative
    $season = 2011;
    $startweek = 36;

    // calculation, 1st alternative
    // in any case Jan 1st is in 1. week
    $firstweekuniversal = mktime(0,0,0,1,4,$season);
    // I'd like to calculate monday 0:00 of the given week.
    // date(...) computes to monday of the calculated week.
    $startday1 = $firstweekuniversal + 86400 * (7*($startweek-1) - date('w', $firstweekuniversal)+1);

    // settings 2nd alternative
    $StartingDate = "KW36 - 5.09.2011 (Mo)";

    // calculation, 2nd alternative
    $firstparts = explode(" ", $StartingDate);
    $secparts = explode(".", $firstparts[2]);
    $startday2 = mktime(0,0,0,intval($secparts[1]),intval($secparts[0]),intval($secparts[2]));

    // Output
    echo "Start: \$startday1=".$startday1.", Timestamp=\"".date("d.m.Y - H:i:s", $startday1)."\"<br>\n";
    echo "Start: \$startday2=".$startday2.", Timestamp=\"".date("d.m.Y - H:i:s", $startday2)."\"<br>\n";

导致此输出:

Start: $startday1=1315177200, Timestamp="05.09.2011 - 01:00:00"
Start: $startday2=1315173600, Timestamp="05.09.2011 - 00:00:00"

1h的差异来自哪里?不可能是夏季问题,在这种情况下,1h 必须反过来,还是我错了?没有区别,当我尝试使用我的环境(本地主机)时,但在我的 prvider 的服务器上有。

谁能给我解释一下?我在这里完全感到困惑。提前致谢,

4

1 回答 1

0

我对夏令时的理解是,在冬季和夏季之间的某个时间点,太阳开始升得更早,所以早上 8 点感觉应该是早上 9 点......这正是时钟所做的,它向前移动稍后(通常是一小时)。这也是为什么这是一个在学校迟到的好借口:)

在任何情况下,本地 php 的时区设置可能是 UTC(或其他一些“中性”时区),但服务器时区设置尊重夏令时。

于 2012-08-30T17:26:25.777 回答