在两个日期(GMT,DST)的范围内获得上周日

时间:2011-04-06 07:29:39

标签: php datetime date dst gmt

我试图在两周的数字之间获得最后一个星期日 - 以避免DST。

按顺序词:开始一段时间 - 从三月的最后一个星期日到十月的最后一个星期天。

这是我的代码:

   $heloo = gmdate('U');
   if ( (date("W", $heloo) >= 12) 
       && (date("W", $heloo) <= 43)
       && (date("N", $heloo) == 7) ) {
    echo "YES Day is: ".date("N", $heloo). "<br />
           Week is: ". date("W", $heloo);
  } else { 
  echo "NO Day is: ".date("N", $heloo). "<br />Week is: ". date("W", $heloo); 
 }

这周似乎工作正常,但日子根本不起作用。能否请您指出正确的方向或建议在哪里寻求帮助?

: - )

1 个答案:

答案 0 :(得分:1)

尝试这段简单的代码:

  function rangeSundays($year, $month_start, $month_end) {
    $res = array();
    for ($i = $month_start; $i <= $month_end; $i++) {
      $dt = strtotime('last sunday of this month', strtotime("$year-$i-1"));
      $res[] = date('Y-m-d', $dt);
      } 
    return $res;
    }

所以,这样使用

$date_array = rangeSundays(2011, 3, 10); // year, start month, end month
print_r($date_array);

输出

Array
    (
        [0] => 2011-03-27
        [1] => 2011-04-24
        [2] => 2011-05-29
        [3] => 2011-06-26
        [4] => 2011-07-31
        [5] => 2011-08-28
        [6] => 2011-09-25
        [7] => 2011-10-30
    )

此外,如果您的php配置(php.ini)中未设置默认时区,请在脚本开头添加类似内容,以避免在PHP中出现警告。

date_default_timezone_set('UTC'); // or any other time zone

将此结果打印到屏幕使用

$date_array = rangeSundays(2011, 3, 10);
foreach($date_array as $x) {
  echo "$x<br/>";
  }

<小时/> 如果您想在不使用功能的情况下执行此操作

$year = 2011; // or which year you want
$month_start = 3; // for starting month; March in this case
$month_end = 10; // for ending month; October in this case

$res = array();
for ($i = $month_start; $i <= $month_end; $i++) {
  $dt = strtotime('last sunday of this month', strtotime("$year-$i-1"));
  $res[] = date('Y-m-d', $dt);
  }

foreach($res as $sunday) {
  echo "$sunday<br />";
  }

<强>输出

2011-03-27
2011-04-24
2011-05-29
2011-06-26
2011-07-31
2011-08-28
2011-09-25
2011-10-30

注意:在这种情况下,DST不会影响日期。

您的代码看起来像不必要的复杂化:)