PHP - Break out of loop
Immediately exit a looping section regardless if loop condition is true.
Note: generally it is better to adjust the loop condition so the loop exits naturally when a specific situation occurs.
Immediately exit a looping section regardless if loop condition is true.
Note: generally it is better to adjust the loop condition so the loop exits naturally when a specific situation occurs.
break;
last update: