I have two arrays in PHP as follows:
People:
Array ( [0] => 3 [1] => 20 )
Wanted Criminals:
if 'empty' is not the best choice, what about this:
if (array_intersect($people, $criminals)) {...} //when found
or
if (!array_intersect($people, $criminals)) {...} //when not found