3

我如何获取并显示我们所在这一周的第一天和最后一天的日期。

所以在本周它将输出:

2012-05-14  -  2012-05-20

(今天是 2012-05-17)

怎么能简单地做到这一点?

4

1 回答 1

10

尝试使用strtotime

$first = date('Y-m-d',strtotime("last monday"));
$last = date('Y-m-d',strtotime("next sunday"));

其他例子

strtotime('monday this week');
strtotime('sunday this week');
于 2012-05-17T11:23:59.497 回答