I want to select multiple value on the same variable in a if
like
if ($var == "1|3|5")
{ Echo'The var was 1,3 or 5';}
is this possible without the usual long way
$var == "1" or $var == "3" or $var == "5"
it should not contains the value like 13 in 113. It should check the hole variable in a string