php获取两个数组的交集

我们在php开发中,经常需要获取两个数组的交集,也就是在两个数组中都出现的元素

如果自己写会比较麻烦,其实php自带有这类函数

我们可以通过`array_intersect`来实现

代码如下

```
MacBook-Air:~ test$cat array.php
1
```

以下为代码运行效果

```
MacBook-Air:~ test$ php array.php
Array
(
[2] => 3
)
```

通过运行我们知道,这两个数组的共同元素是`3`

    A+
发布日期:2021年12月06日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: