Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need help getting the "this week" full date range in the following format: Y-m-d

I have successfully been able to get "this month" full date range but not the "this week" full date range.

This is my code for "this month":

//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();

Any help is greatly appreciated!

share|improve this question

1 Answer

up vote 1 down vote accepted

Just so you know, your "first of month" code is wrong. If you're in August, it'll give you the range July 8th to August 7th. Use the correct d/m/Y format when doing it that way around.

As for the week, try this:

$start_week = strtotime("last monday midnight");
$end_week = str_to_time("+1 week",$start_week);

$start_week = date("Y/m/d",$start_week);
$end_week = daet("Y/m/d",$end_week);
share|improve this answer
Wouldn't this only work for last week if its Monday now; if its Tuesday won't last Monday give yesterday? – Layton Everson Aug 6 '12 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.