正在运行
var_dump(new \DateTime('first day of this week'));
返回9月1日
这是一个错误,有没有解决方法?
答案 0 :(得分:1)
请尝试以下代码:
var_dump(new \DateTime('monday this week'));
答案 1 :(得分:-1)
请参阅此内容 - Finding First day of week via php同时尝试此操作 -
<?php
// var_dump(new \DateTime('first day of this week'));
echo date("Y-m-d", strtotime('monday this week')), "<br/>\n";
echo date("Y-m-d", strtotime('sunday last week')), "<br/>\n";
?>