check multiple value in array php code example
Example 1: in array php multiple values
$haystack = array(...);
$target = array('foo', 'bar');
if(count(array_intersect($haystack, $target)) == count($target)){
}
if(count(array_intersect($haystack, $target)) > 0){
}
Example 2: multiple value match in array php
if (in_array('a', $array_under_test) || in_array('b', $array_under_test)) {
}
Example 3: multiple value match in array php
$uniqueKeys = array_unique($list[0])
foreach ($uniqueKeys as $uniqueKey)
{
$v = array_keys($list[0], $uniqueKey);
if (count($v) > 1)
{
foreach ($v as $key)
{
}
}
}