Quote:
Originally Posted by WhiteDragon
Each group of statements (except the default) should end with break or return. Do not fall through.
|
Didn't Zero
just write a guide to switch statements that said pretty much showed efficient ways to not end each statement with a break?
Also, I like to indent my cases two spaces in, just like my if statements.
PHP Code:
switch (expression) {
case expression:
statements
default:
statements
}