In PHP, developers use the break statement to terminate a block and gain control out of the loop or switch, whereas the continue statement will not terminate the loop but promotes the loop to go to the next iteration. The break statement can be implemented in both loop (for, while do) and switch statement, but the continue statement can be only implemented in the loop (for, while do) statements.

BY Best Interview Question ON 31 Jul 2019