I want to use strtotime(\"last Monday\").
strtotime(\"last Monday\")
The thing is, if today IS MONDAY, what does it return? It seems to be returning the date for the monday of la
$monday = strtotime('Monday last week'); $sunday = strtotime('+6 days', $monday);