我需要帮助以下列格式获取“本周”完整日期范围:Ymd
我已经成功地获得了“本月”的完整日期范围,但没有获得“本周”的完整日期范围。
这是我的“本月”代码:
//Functions for later use
function firstOfMonth() {
return date("Y-m-d", strtotime(date('m').'/01/'.date('Y').' 00:00:00'));
}
function lastOfMonth() {
return date("Y-m-d", strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))));
}
//Setup the date_range variables
$date_start = firstOfMonth();
$date_end = lastOfMonth();
任何帮助是极大的赞赏!