Home  >  Article  >  php教程  >  如何学习PHP array_intersect_assoc()

如何学习PHP array_intersect_assoc()

WBOY
WBOYOriginal
2016-06-13 09:29:401218browse

如何学习PHP array_intersect_assoc()

 定义和用法

array_intersect_assoc() 函数返回两个或多个数组的交集数组。

与 array_intersect() 函数 不同的是,本函数除了比较键值,还比较键名。返回的数组中元素的键名保持不变。

语法

array_intersect_assoc(array1,array2,array3...)

 

参数

描述

 

array1必需。与其他数组进行比较的第一个数组。

array2必需。与第一个数组进行比较的数组。

array3可选。与第一个数组进行比较的数组。可以有多个。

 

 

例子 1

"Cat",1=>"Dog",2=>"Horse"); $a2=array(3=>"Horse",1=>"Dog",0=>"Cat"); print_r(array_intersect_assoc($a1,$a2)); ?>

输出:

Array ( [0] => Cat [1] => Dog )

 

 

例子 2

"Cat",1=>"Dog",2=>"Horse"); $a2=array(3=>"Horse",1=>"Dog",5=>"Fish"); $a3=array(6=>"Cow",1=>"Dog",8=>"Fish"); print_r(array_intersect_assoc($a1,$a2,$a3)); ?>

输出:

Array ( [1] => Dog )

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn