php如何比较两个数组 php 两个数组比较

主机教程 建站分享 2年前 (2022-11-05) 209次浏览

文章摘要:php如何比较两个数组 php 两个数组比较

在php中使用array_intersect()函数对两个数组进行比较,具体方法如下: array_inter […]

在php中使用array_intersect()函数对两个数组进行比较,具体方法如下:

array_intersect()函数作用:

php中array_intersect()函数的作用是用于比较两个数组的元素,并返回其交集。

array_intersect()函数语法:

array_intersect(array1,array2);

参数:

array1,array2:需要进行比较的数组。

array_intersect()函数使用方法:

例:对$a1和$a2两个数组进行比较,并返回交集

$a1=array("e"=>"red","f"=>"black","g"=>"purple");

$a2=array("a"=>"red","b"=>"black","h"=>"yellow");

$result=array_intersect($a1,$a2);

print_r($result);

?>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:php如何比较两个数组 php 两个数组比较
文章链接:http://www.7966.org/post/12925.html
转载请注明出处

喜欢 (0)