如何检查多个值,例如:
$arg = array('foo','bar'); if(in_array('foo','bar',$arg))
这是一个例子,所以您了解得更多一些,我知道它不会起作用。
将目标与干草堆相交,并确保交点与目标完全相等:
$haystack = array(...); $target = array('foo', 'bar'); if(count(array_intersect($haystack, $target)) == count($target)){ // all of $target is in $haystack }
请注意,您只需要验证所得交集的大小是否与目标值数组的大小相同,即可说$haystack是的超集$target。
$haystack
$target
为了确认至少有一个值,$target也是$haystack,你可以这样做检查:
if(count(array_intersect($haystack, $target)) > 0){ // at least one of $target is in $haystack }