作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是第一个数组:
$possible_combinations = array(
1 => array(1),
2 => array(2),
3 => array(3),
4 => array(4),
5 => array(1, 2),
6 => array(1, 3),
7 => array(1, 4),
8 => array(2, 3),
9 => array(2, 4),
10 => array(3, 4),
11 => array(2, 3, 4),
12 => array(1, 3, 4),
13 => array(1, 2, 4),
14 => array(1, 2, 3),
15 => array(1, 2, 3, 4)
);
$seeking = array(2, 3, 4);
$possible_combinations[11]
匹配
$seeking
.
最佳答案
"any of the values of that associative array"
$possible_combinations
是一个多维数组。不过,您可以使用
in_array
docs :
var_dump(in_array(array(2, 3, 4), $possible_combinations)); // true
array_search
如其他答案所述。哦,还要注意
array_search
可以返回零,所以你应该验证它的返回值
!== FALSE
当你检查结果时。
关于php - 如何在 PHP 中比较 2 个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10561658/
我是一名优秀的程序员,十分优秀!