I'm trying to get strtotime to make Date Ranges, I've already figured it out for some of the basic ones.
Here's some that i'm trying to figure out but I can't find the format that you're supposed to type anywhere online for these ones:
$startDate = strtotime('first day of last month');
$endDate = strtotime('last day of last month');
$startDate = strtotime('first of last week');
$startDate = strtotime('first of this week');
Those are the only ones I can't find a reference for, they might require special programming and don't have a strtotime reference.
Edit: Looks like my code should've worked but there's a bug in PHP 5.2
I used a workaround to get to the first day of last month.
This works: $firstDayOfLastMonth = strtotime(date('Y-m', strtotime('last month')))
strtotime(date('Y-m') . ' - 1 month');– Dale Apr 17 '12 at 16:30