1
switch($app_id){
case (
$app_id == 1 ||
$app_id == 2
):
//do something
break;
case 3:
//do something else
break;
}
and
2
switch($app_id){
case 1:
case 2:
//do something
break;
case 3:
//do something else
break;
}
apart from etiquette, is there a better reason why you wouldn't do the second or is it entirely up to you?
Reason i ask is because in php.net it says that you should not do the latter regardless of if you want to (snippet from php.net saying you shouldn't do cases without breaks regardless of if you want to stack up the queries or not):
<?php
switch ($i) {
case 0:
echo "i equals 0";
case 1:
echo "i equals 1";
case 2:
echo "i equals 2";
}
?>
Here, if $i is equal to 0, PHP would execute all of the echo statements! If $i is equal to 1, PHP would execute the last two echo statements. You would get the expected behavior ('i equals 2' would be displayed) only if $i is equal to 2. Thus, it is important not to forget break statements (even though you may want to avoid supplying them on purpose under certain circumstances).
Reasons so far:
ANSWER: if I omit a break to allow for a fall-through, I put in a comment to say that there's a fall-through occuring, just so the next person coming along doesn't go "aha! missing break! BOOM" – Marc B
MY COMMENT: Excellent reason Marc! that is the bum of etiquette.. if you break it, people aren't ready to be pood on by their captain correctness.
ANSWER: @JamesT: What you've read only warns you about forgetting it by mistake, because it's a very common programming error. You can do it if it's intended. – Madara Uchiha
MY COMMENT: I think then that etiquette wins this question. Do put breaks in because it may be confusing to the next person editing your code; alas do it if you are sensible enough to put in a comment to explain you meant to miss it out
ANSWER: You're miss understanding their sentiment. They're talking about omitting breaks when there are individual actions for each case, such as my first example. Grouping cases, such as my 4 and 5 from example one is perfectly fine and encouraged if actions are entirely shared across cases. – Rawkode
MY COMMENT: I agree that this sentence can be misread. I see no reason apart from confusing future developers into questioning whether you did or did not mean to leave a break out.

breakstatement(s) correctly. – Blazemonger Nov 20 '12 at 16:42switchat all. – moonwave99 Nov 20 '12 at 16:43