3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = (new DateTime('2017-01-01'))->modify('first day of this month'); $end = (new DateTime('2018-03-04'))->modify('first day of this month'); $interval = DateInterval::createFromDateString('1 month'); $period = new DatePeriod($start, $interval, $end); $months = array(); foreach ($period as $dt) { $months[] = $dt->format("F Y"); } print_r($months);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => January 2017 [1] => February 2017 [2] => March 2017 [3] => April 2017 [4] => May 2017 [5] => June 2017 [6] => July 2017 [7] => August 2017 [8] => September 2017 [9] => October 2017 [10] => November 2017 [11] => December 2017 [12] => January 2018 [13] => February 2018 )

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:
33.33 ms | 401 KiB | 8 Q