<?php foreach (range(1, 10) as $i) { switch ($i) { case 1; echo 'first' . PHP_EOL; break; case 2: echo 'second' . PHP_EOL; continue; break; } echo $i . PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.