Jump to content

easy way to check a value


aebstract

Recommended Posts

it is not good practive to use use OR use ||

 

If this is just a range of numbers from 1-4

if ($var <= 4)
{
    // Do Stuff Here
}

 

if you are refering to checking a variable aganist a few possibilites it is done as so

 

if ($var == exp) || $var == expr || $var == expr)
{
   // Do as you which
}

should be able to do this

$var = 1;
if($var == 1 OR 2 OR 3 OR 4){
// do it
}

not tested though

 

i think this will not work...

try this..

$var = 1;
if($var == 1 OR $var == 2 OR $var == 3 OR $var == 4){
// do it
}

 

OR better

 

<?php 
$var = 1;
$arr = array(1,2,3,4);
if(in_array($var,$arr)){
echo "Sucess";
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.