how can I get last week\' date range in php ?
see my codes bellow:
I know this is old but here's a much more succinct way of doing it:
$startDate = date("m/d/y", strtotime(date("w") ? "2 sundays ago" : "last sunday")); $endDate = date("m/d/y", strtotime("last saturday")); echo $startDate . " - " . $endDate