If I want to compare a single variable against multiple variables, I typically do this:
if ( ($var==2) || ($var==3) || ($var==5) ) {
but on some longer statements, it gets kind of redundant. Is there a way to say:
if ($var == ( 2 || 3 || 5 )) {
No biggie, just curious.