3v4l.org

run code in 300+ PHP versions simultaneously
<?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); var_dump($period); /* $monthsCount = 0; foreach ($period as $dt) { $monthsCount++; } echo $monthsCount;*/

preferences:
52.4 ms | 402 KiB | 5 Q