我有一个数组:
$haystack = array(1,2,3,4,5,6,7,8,9,10...);
$needle = array(3,4,5);
$bad_needle = array(3,5,4);
如果我检查haystack是否包含针,我需要 true 。但是如果我检查haystack是否包含bad_needle,我还需要 false 。 所有干草堆和针头都没有前进的提示?
答案 0 :(得分:1)
$offset = array_search($needle[0], $haystack);
$slice = array_slice($haystack, $offset, count($needle));
if ($slice === $needle) {
// yes, contains needle
}
如果$haystack
中的值不是唯一的,则会失败。在这种情况下,我会选择一个很好的循环:
$found = false;
$j = 0;
$length = count($needle);
foreach ($haystack as $i) {
if ($i == $needle[$j]) {
$j++;
} else {
$j = 0;
}
if ($j >= $length) {
$found = true;
break;
}
}
if ($found) {
// yes, contains needle
}
答案 1 :(得分:0)
var_dump(strpos(implode(',', $haystack), implode(',', $needle)) !== false);
var_dump(strpos(implode(',', $haystack), implode(',', $bad_needle)) !== false);
一个工作的array_slice()仍然需要一个循环,我可以解决:
foreach(array_keys($haystack, reset($needle)) as $offset) {
if($needle == array_slice($haystack, $offset, count($needle))) {
// yes, contains needle
break;
}
}