Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to go from this:

if($var == 3 || $var == 4 || $var == 5 || $var =='string' || $var == '2010-05-16') { execute code here }

to this:

if($var == (3, 4, 5, 'string', '2010-05-16')) {execute code here }

Seems very redundant to keep typing $var, and I find that it makes it a bit cumbersome to read. Is there a way in PHP to do simplify it in this way? I read on a post here that when using XQuery you can use the = operator as in $var = (1,2,3,4,5) etc.

Thanks, John

share|improve this question
1  
This is a dupe, but I'm too lazy to search for the original. – Pekka 웃 Nov 5 '10 at 13:47

6 Answers

up vote 8 down vote accepted

Place the values in an array, then use the function in_array() to check if they exist.

$checkVars = array(3, 4, 5, "string", "2010-05-16");
if(in_array($var, $checkVars)){
    // Value is found.
}

http://uk.php.net/manual/en/function.in-array.php

share|improve this answer
One of the first responses, nice solution, and includes a link to the manual. Thanks! – John Nov 5 '10 at 14:52

If you need to perform this check very often and you need good performance, don't use a slow array search but use a fast hash table lookup instead:

$vals = array(
    1 => 1,
    2 => 1,
    'Hi' => 1,
);

if (isset($vals[$val])) {
    // go!
}
share|improve this answer
1  
This is a very interesting solution. I'll have to run a script or two to see how the speed compares, as I'm quite curious now. – John Nov 5 '10 at 14:47
if (in_array($var, array(3, 4, 5, 'string', '2010-05-16'))) {execute code here }

Or, alternatively, a switch block:

switch ($var) {
    case 3:
    case 4:
    case 5:
    case 'string':
    case '2010-05-16':
        execute code here;
        break;
}
share|improve this answer
The first solution is excellent. The second option here works, just as the if statement I proposed works, but it's just as cumbersome I believe. Instead of typing $var many times, have to type case many times. Thanks for the response! – John Nov 5 '10 at 14:51

You can use in_array().

if (in_array($var, array(3,4,5,"string","2010-05-16"))) { .... }
share|improve this answer

Or you can use in_array()

if(in_array($var,array(4,5,'string','2010-05-16',true)) {

}
share|improve this answer
$vals = array (3, 4, 5, 'string', '2010-05-16');
if(in_array($var, $vals)) {
  //execute code here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.