Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$a=3;
if ($a === 3 || $a === 2 || $a === 1){
//do something
}
$test1 = array (1, 2, 3);
$test2 = array (4, 5, 6);
if (in_array($a, $test1)) {
//do something
elseif (in_array($a, $test2)) {
// do something else
} else {
//whatever
}
$a=2;
switch ($a){
case 1:
case 2:
case 3:
//do something
break;
case 4:
case 5:
case 6:
//do something else
break;
default:
//whatever
}