检查数组中是否存在任何值

时间:2013-07-11 05:24:59

标签: php arrays

想要缩短此代码

if( (in_array('2', $values)) or (in_array('5', $values)) or (in_array('6', $values)) or (in_array('8', $values)) ){
echo 'contains 2 or 5 or 6 or 8';
}

试过这个

(in_array(array('2', '5', '6', '8'), $values, true))

但据我所知,只有当数组中存在所有值

时才会这样

请,建议

4 个答案:

答案 0 :(得分:4)

尝试array_intersect(),例如

if (count(array_intersect($values, array('2', '5', '6', '8'))) > 0) {
    echo 'contains 2 or 5 or 6 or 8';
}

此处示例 - http://codepad.viper-7.com/GFiLGx

答案 1 :(得分:1)

你可以制作这样的函数:

function array_in_array($array_values, $array_check) {
  foreach($array_values as $value)
    if (in_array($value, $array_check))
      return true;
  return false;
}

答案 2 :(得分:0)

怎么样

$targets = array(2,5,6,8);
$isect = array_intersect($targets, $values);
if (count($isect) != 0) {
// do stuff
}

答案 3 :(得分:0)

您甚至可以省略计数来缩短代码。

$input = array(2,3);
if (array_intersect($input, $values)) {
    echo 'contains 2 or 3';    
}