switch ($foo)
{
case 3 || 5:
bar();
break;
case 2:
apple();
break;
}
In the above code, is the first switch statement valid? I want it to call the function bar() if the value of $foo is either 3 or 5

3 || 5seems to get evaluated to justtrueinside a switch statement and thus will always callbar()for any value of$foo. – Mark Rushakoff Nov 1 at 23:56