3v4l.org

run code in 300+ PHP versions simultaneously
<?php // This is identical to semicolons.php in this gist // except that it uses colons instead of semicolons // for the first two case statements. foreach ([3, 2, 1] as $rank) { $actions = []; switch($rank) { case 3: $actions[] = "Hit all the things"; case 2: $actions[] = "Hit two things"; case 1: $actions[] = "Hit a thing"; break; } var_dump($rank, $actions); }
Output for git.master, git.master_jit, rfc.property-hooks
int(3) array(3) { [0]=> string(18) "Hit all the things" [1]=> string(14) "Hit two things" [2]=> string(11) "Hit a thing" } int(2) array(2) { [0]=> string(14) "Hit two things" [1]=> string(11) "Hit a thing" } int(1) array(1) { [0]=> string(11) "Hit a thing" }

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