Problem Statement
What keyword is used to exit a switch statement in PHP?
Explanation
The break statement stops execution of the current case in a switch block. Without it, PHP continues to the next case.
Code Solution
SolutionRead Only
switch($day){ case 'Mon': echo 'Work'; break; }