3v4l.org

run code in 300+ PHP versions simultaneously
<?php $months = array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); $yes = 0; for ($i = 0; $i < 12; ++$i) { $result = date('F',strtotime($months[$i])); if ($result != $months[$i]) { $font = "red"; } else { $font = "green"; $yes++; } echo "<font color='" . $font . "'>" . $result . "</font>\n"; } echo "\n" . $yes . " / 12 correct months."; ?>
Output for git.master, git.master_jit, rfc.property-hooks
<font color='green'>January</font> <font color='red'>March</font> <font color='green'>March</font> <font color='red'>May</font> <font color='green'>May</font> <font color='red'>July</font> <font color='green'>July</font> <font color='green'>August</font> <font color='red'>October</font> <font color='green'>October</font> <font color='red'>December</font> <font color='green'>December</font> 7 / 12 correct months.

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:
66.31 ms | 402 KiB | 8 Q