3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = (new DateTime('1 year ago'))->modify('first day of this month'); $end = (new DateTime())->modify('first day of this month'); $interval = new DateInterval('P1M'); $period = new DatePeriod($start, $interval, $end); $months = array(); foreach ($period as $dt) { $months[] = $dt->format('Y-m-d'); } $reverse_months = array_reverse($months); print_r($reverse_months);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 2014-03-01 [1] => 2014-02-01 [2] => 2014-01-01 [3] => 2013-12-01 [4] => 2013-11-01 [5] => 2013-10-01 [6] => 2013-09-01 [7] => 2013-08-01 [8] => 2013-07-01 [9] => 2013-06-01 [10] => 2013-05-01 [11] => 2013-04-01 )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
50.67 ms | 402 KiB | 8 Q