从星期日开始一周的问题

时间:2011-03-21 10:38:31

标签: php strtotime

以下是我为将星期日作为一周的开始日而创建的功能


function getCurrentIntervalOfWeek($liveratetime) {
    // get start of each week.
    $dayofweek = date('w', $liveratetime);
    $getdate = date('Y-m-d', $liveratetime);
    $createstart = strtotime('last Sunday', $getdate);
    $weekstart = ($dayofweek == 0) ? $liveratetime : $createstart;
    // get the current time interval for a week, i.e. Sunday 00:00:00 UTC
    $currentInterval = mktime(0,0,0, date('m', $weekstart), date('d', $weekstart), date('Y', $weekstart));
    return $currentInterval;
}

此处的liveratetime是一周内任何一天的纪元时间。基本上这个函数需要liveratetime并查找最后一个星期日,以获得该pertrateulat liveratetime纪元的当前间隔。

但问题在于,每当我尝试从某个生命时间获取当前间隔时,

$createstart = strtotime('last Sunday', $getdate);
会给我
-345600
。我不明白为什么?任何人都可以分享一下这个。

这通常发生在过去的日期,例如

2007-10-02

3 个答案:

答案 0 :(得分:2)

您可能想尝试此功能,它会根据提供的日期返回一个日期数组,从星期日开始。

function get_week_dates( $date )
{
// the return array
$dates = array();

$time = strtotime($date);
$start = strtotime('last Sunday', $time);

$dates[] = date( 'Y-m-d', $start );

// calculate the rest of the times
for( $i = 1; $i < 7; $i++ )
{
    $dates[] = date( 'Y-m-d' , ( $start + ( $i * ( 60 * 60 * 24 ) ) ) );
}

return $dates;
}

用法

get_week_dates( '2011-03-21' );

将返回

array
  0 => string '2011-03-20' (length=10)
  1 => string '2011-03-21' (length=10)
  2 => string '2011-03-22' (length=10)
  3 => string '2011-03-23' (length=10)
  4 => string '2011-03-24' (length=10)
  5 => string '2011-03-25' (length=10)
  6 => string '2011-03-26' (length=10)

答案 1 :(得分:2)

我一直在寻找这个问题的解决方案,经过一番研究和尝试后,似乎这样有效......虽然我还需要在下周日进行测试,看看它是否确实如此..无论如何这里是代码:

$week_start = new DateTime();
$week = strftime("%U");  //this gets you the week number starting Sunday
$week_start->setISODate(2012,$week,0); //return the first day of the week with offset 0
echo $week_start -> format('d-M-Y'); //and just prints with formatting 

答案 2 :(得分:1)

Strtotime的第二个参数是TIMESTAMP,而不是日期的字符串表示。 尝试:

$createstart = strtotime('last Sunday', $liveratetime);

它给你-345600,因为当$ getdate(即Y-m-d)被解析为int时,结果为0 - 纪元时间。因此,从纪元时间开始的最后一个星期天就是结果......