Jump to content

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";
}
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.