如果要检查一个数组的任何元素是否在另一个数组中,可以使用array_intersect:$a = Array('bird', 'butterfly', 'bat');$b = Array('ball', 'helmet', 'bat');if (!array_intersect($a, $b)) echo 'not in';
1 回答
- 1 回答
- 0 关注
- 99 浏览
添加回答
举报
0/150
提交
取消