PHP Break
PHP break statement stop the execution of the current Control loop Statement like for, while, do-while, switch, and for each loop. If you use break statement inside inner loop body, it breaks the execution of inner loop only. The break statement can be used to jump out of a loop.Learn PHP Break tutorials....