如何抓住并显示我们当前一周的第一天和最后一天的日期。
所以在本周它将输出:
2012-05-14 - 2012-05-20
(今天是2012-05-17)
如何才能做到这一点?
答案 0 :(得分: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');