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); }

preferences:
51.82 ms | 402 KiB | 5 Q