In PHP, with which keyword can you cease execution of a loop, and move program flow to the following statement after the loop? code example
Example: php continue
<?php
for ($i = 0; $i < 5; ++$i) {
if ($i == 2)
continue
print "$i\n";
}
?>