I need to compare a value to a set of array. However, I need to compare multiple values in foreach. If using in_array, it can be slow, real slow. Is there any faster alternative? My current code is

foreach($a as $b){
   in_array($b, $array);
}

Thank you.

link|improve this question

65% accept rate
2  
define "real slow" in numbers please – Your Common Sense Aug 18 '10 at 8:34
Arrays are still the same in PHP5 as they were in PHP4, please tag correctly. php.net/ChangeLog-5.php de.php.net/manual/en/function.array-diff.php – TheLQ Aug 18 '10 at 22:33
feedback

3 Answers

up vote 5 down vote accepted

You could use array_diff to compute the difference between the $a array against $array. This would give you all the values not in $array or $a.

Example from Manual:

$array1 = array("a" => "green", "red", "blue", "red");
$array2 = array("b" => "green", "yellow", "red");
print_r( array_diff($array1, $array2) );

Array
(
    [1] => blue
)

Or you can use array_intersect to find those that are in those arrays.

array_intersect Example from PHP Manual:

$array1 = array("a" => "green", "red", "blue");
$array2 = array("b" => "green", "yellow", "red");
print_r( array_intersect($array1, $array2) );

Array
(
    [a] => green
    [0] => red
)

Pick the one you need.

link|improve this answer
feedback

I think you are searching for the intersection of $a an $array, aren't you? If yes, simply use array_intersect()

link|improve this answer
2  
I think you mean array_intersect() – Dennis Haarbrink Aug 18 '10 at 8:26
@Dennis Haarbrink: Yes, my bad. – greg0ire Aug 18 '10 at 9:14
feedback

If you can treat the array as a hash:

$array = array('value' => 1);

Then in the foreach do this:

foreach($a as $b){
    isset($array[$b]);
}

I just copied&pasted your example, I suppose there is more code but basically using the isset is a lot faster than using the in_array function,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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