Description |
Category: Bug |
The specified argument to the break is greater than the current nesting
level.
Example
function example()
{
for ($i=0; $i<100; $i++) {
for ($j=0; $j<100; $j++) {
if (($i * $j) > 1000) {
break 3; // The nesting level in this location is only 2
}
}
}
}