I have a switch where in very rare occasions I might need to jump to another case, I am looking for something like these:
switch($var){ case: \'a\' if($ot
How about cascading (or not) based on the extra condition?
case 'x' : if ($otherVar == 0) { break; } case 'y' :