3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getDates(DateTime $date) { if ($date->format('d') == 20) { $nextMonth = clone $date; $nextMonth->modify('-1 day'); $nextMonth->modify('+1 month'); return [ 'start' => $date, 'end' => $nextMonth, ]; } else if ($date->format('d') == 19) { $lastMonth = clone $date; $lastMonth->modify('+1 day'); $lastMonth->modify('-1 month'); return [ 'start' => $lastMonth, 'end' => $date, ]; } } $date = new DateTime('2017-09-20'); var_dump(getDates($date)); $date = new DateTime('2017-09-19'); var_dump(getDates($date));
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { ["start"]=> object(DateTime)#1 (3) { ["date"]=> string(26) "2017-09-20 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["end"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2017-10-19 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } } array(2) { ["start"]=> object(DateTime)#1 (3) { ["date"]=> string(26) "2017-08-20 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["end"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2017-09-19 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }

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:
57.86 ms | 403 KiB | 8 Q