U don't understand what my question is.
is it possible to put more than one condition in case argument like :
switch ($var1){
case 'val0' || 'val1': <- is it correct to wrote that
echo $var;
break;
default:
echo $var;
break;
}
The default command should come at the bottom, and takes care of any situation that the specific case statements don't.