Breaks out of loops created with the debugger while command. See while.. For example:
while ($i<20) { $j+=$i; if ($j>50) {$j=50; break;}; $i++; } |
In this case, if ($j>50)
is true, then the while loop will terminate regardless of the value of ($i)
.
See also error.