php check if anyone of the elements of an array is inside another array code example
Example: check if array value exists in another array php
$result = !empty(array_intersect($people, $criminals));
$result = !empty(array_intersect($people, $criminals));