php获得两个数组的差集

我们在php开发中,经常需要获取两个数组的差集,也就是在数组1与数组2的不同的元素

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

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

代码如下

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

以下为代码运行效果

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

通过运行我们知道,数组1与数组2的不同元素是`1和2`

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

发表评论

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