我们在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`