php for loop break on 1 loop code example Example: php for break <?php for ($x = 0; $x < 10; $x++) { if ($x == 4) { break; } } ?>