up vote 0 down vote favorite
share [g+] share [fb]

I have two arrays in PHP as follows:

People:

Array
(
    [0] => 3
    [1] => 20
)

Wanted Criminals:

Array
(
    [0] => 2
    [1] => 4
    [2] => 8
    [3] => 11
    [4] => 12
    [5] => 13
    [6] => 14
    [7] => 15
    [8] => 16
    [9] => 17
    [10] => 18
    [11] => 19
    [12] => 20
)

How do I check if any of the People elements are in the Wanted Criminals array?

In this example, it should return true because 20 is in Wanted Criminals.

Thanks in advance.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You can use array_intersect().

$result = !empty(array_intersect($people, $criminals));

link|improve this answer
3  
Can't use empty() with anything other than a variable. – grantwparks Sep 25 '09 at 19:21
feedback

That code is invalid as you can only pass variables into language constructs. Empty() is a language construct.

You have to do this in two lines.

$result = array_intersect($people, $criminals);
$result = !empty($result);
link|improve this answer
The problem is not it is a language construct. The problem is it expects a reference and Greg's passing a value. – Artefacto Jul 28 '10 at 15:41
feedback

There's little wrong with using array_intersect() and count() (instead of empty).

For example:

$bFound = (count(array_intersect($criminals, $people))) ? true : false;
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.