当给出日期时如何在php中获取该周的星期一的日期

时间:2012-08-02 04:30:15

标签: php datetime date

  

可能重复:
  Get first day of week in PHP?

当给出约会时,我应该得到那个星期一的星期日。

2012-08-08时,应该返回2012-08-06。

2 个答案:

答案 0 :(得分:10)

function last_monday($date) {
    if (!is_numeric($date))
        $date = strtotime($date);
    if (date('w', $date) == 1)
        return $date;
    else
        return strtotime(
            'last monday',
             $date
        );
}

echo date('m/d/y', last_monday('8/14/2012')); // 8/13/2012 (tuesday gives us the previous monday)
echo date('m/d/y', last_monday('8/13/2012')); // 8/13/2012 (monday throws back that day)
echo date('m/d/y', last_monday('8/12/2012')); // 8/06/2012 (sunday goes to previous week)

试一试:http://codepad.org/rDAI4Scr

...或者是在第二天(星期一)而不是前一周星期日返回的变体,只需添加一行:

 elseif (date('w', $date) == 0)
    return strtotime(
        'next monday',
         $date
    );

试一试:http://codepad.org/S2NhrU2Z

你可以传递时间戳或字符串,你会得到一个时间戳

<强>文档

答案 1 :(得分:2)

您可以使用strtotime功能轻松制作时间戳 - 它同时接受短语,例如&#34;最后一个星期一&#34;以及辅助参数,这是您可以使用mktime之日起轻松制作的时间戳(请注意,特定日期的输入为Hour,Minute,Second,Month,Day,Year)。

<?php
    $monday=strtotime("monday this week", mktime(0,0,0, 8, 8, 2012));
    echo date("Y-m-d",$monday);
    // Output: 2012-08-06
?>

编辑已更改&#34;上周一&#34;在本周一的strtotime至&#34;&#34;它现在完美无缺。