Is it possible to use three parameters in switch-case, like this:
switch($var1, $var2, $var3){ case true, false, false: echo \"Hello\"; b
I don't know - if you really want it this way - maybe cast them all to string, concatenate and then use the resulting string in your case condition?