Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

list of months between two dates php

$start    = new DateTime('2010-12-02');
$start->modify('first day of this month');
$end      = new DateTime('2012-05-06');
$end->modify('first day of next month');
$interval = DateInterval::createFromDateString('1 month');
$period   = new DatePeriod($start, $interval, $end);

foreach ($period as $dt) {
    echo $dt->format("Y-m") . "<br>
";
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #months #dates #php
ADD COMMENT
Topic
Name
3+1 =