vote up 4 vote down star

is there such thing (in PHP anyway) for an OR operator in a switch case?

something like..

switch ($value) {

case 1 || 2:
echo 'the value is either 1 or 2';
break;

}
flag

4 Answers

vote up 28 vote down
switch ($value)
{
    case 1:
    case 2:
        echo "the value is either 1 or 2.";
    break;
}

This is called "falling though" the case block and it exists in most languages which implement a switch statement.

link|flag
To be pedantic some languages like C# do not "fall through" but rather allow a set of case labels at the top of a block of code. True fall-through allows code between the cases. – BCS Oct 16 '08 at 0:33
Ah, you are right of course. But it's almost the same idea :) – Nelson LaQuet Oct 16 '08 at 0:35
The only thing I'd change is to add a comment after case 1 indicating that falling through is what you intended. – Keith Twombley Oct 16 '08 at 3:51
vote up 3 vote down

Try

switch($value) {
    case 1:
    case 2:
        echo "the value is either 1 or 2";
        break;
}
link|flag
vote up 0 vote down

ah i see, so as long as i order them in the right fashion I can achieve this? excellent, and once again thank you!

link|flag
Since you asked the question you can mark a reply as the best answer to help future readers. – Keith Twombley Oct 16 '08 at 3:50
vote up 4 vote down

I won't repost the other answers because they're all correct, but I'll just add that you can't use switch for more "complicated" statements, eg: to test if a value is "greater than 3", "between 4 and 6", etc. If you need to do something like that, stick to using if statements, or if there's a particularly strong need for switch then it's possible to use it back to front:

switch (true) {
    case ($value > 3) :
        // value is greater than 3
    break;
    case ($value >= 4 && $value <= 6) :
        // value is between 4 and 6
    break;
}

but as I said, I'd personally use an if statement there.

link|flag
Glad to see that you recommended if() over switch() in this case. This kind of switch just adds complexity, IMO. – orlandu63 Oct 16 '08 at 2:08
yeah, you'd have to have a fairly compelling reason to choose this style, but it's good to know that it's possible. – nickf Oct 16 '08 at 2:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.