3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = new DateTime(date('Y-m-d')); $start->modify('first day of this month'); $end = new DateTime('2013-12-01'); $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>\n"; }

preferences:
48.83 ms | 406 KiB | 6 Q