Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

if I have a start date, say 2009-02-01 and an end date say 2010-01-01. How can I create a loop to go through all the dates (months) in the range?

Thanks!!

share|improve this question

1 Answer

up vote 33 down vote accepted

Try

$start = $month = strtotime('2009-02-01');
$end = strtotime('2011-01-01');
while($month < $end)
{
     echo date('F Y', $month), PHP_EOL;
     $month = strtotime("+1 month", $month);
}

As of PHP5.3 you can use http://www.php.net/manual/en/class.dateperiod.php

share|improve this answer
6  
If I ever see you somewhere ... I swear I'll buy you a beer!Or even a dozen !!! :D – tftd Apr 27 '11 at 14:28
3  
@tftd one or two would be enough ;) Thanks. – Gordon Apr 27 '11 at 14:34
How can i loop thru days in a date range ? can you please add that answer too. – Harsha M V Jul 20 '12 at 11:35
1  
@HarshaMV please consult the manual for strtotime and search SO. – Gordon Jul 20 '12 at 11:47
1  
If your start date is based on now, be careful if the day is the 29th - 31st, or +1 month will skip some months. $start = $month = strtotime(date("Y-m-1")); – yellottyellott Nov 29 '12 at 21:40
show 1 more comment

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.