Source Code:
(back to article)
<?php for ($i = 1; $i < 10; $i++) { if ($i == 5) { break; } echo $i . " "; } ?>
Result:
Report an issue