Let's talk about the format of the switch () statement
switch (expression) {
Case Match 1:
When matching 1 and the expression match the successful execution of the Code;
Break
Case Match 2:
When matching 2 and the expression match the successful execution of the Code;
Break
Default
If the case statement does not have the code executed with the expression successfully;
}
It is very important to understand how switch is performed. The switch statement executes one line at a line (actually a statement-taking statement). No code is executed at the beginning. PHP begins executing a statement only if the value in one case statement matches the value of the switch expression until the switch's program segment ends or the first break statement is encountered. If you do not write a break at the end of the statement section of the case, PHP will continue to execute the statement section in the next box.
Example:
<?php
Switch ($i) {case
1:
echo "$i value is 1";
break;
Case 2:
echo "$i value is 2";
break;
Case 3:
echo "$i value is 3";
break;
Default:
echo "$i value is not 1, 2, 3";
}
? >
The statement in a case can also be empty, which simply transfers control to the statement in the next box, knowing that the statement block for the next case is not empty, so that multiple values match the consent code block is implemented:
Output the same statement when the value of $i is 1 or 2 or 3 o'clock:
<?php
Switch ($i) {case
1: Box
2:
3:
echo "$i value of $i is 1 or 2 or 3";
break;
}
? >