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

如何学习PHP array_intersect_key()

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

如何学习PHP array_intersect_key()

 定义和用法

array_intersect_key() 函数使用键名比较计算数组的交集。

array_intersect_key() 返回一个数组,该数组包含了所有出现在被比较的数组中并同时出现在所有其它参数数组中的键名的值。

注释:仅有键名用于比较。

语法

array_intersect_key(array1,array2,array3...)

 

参数

描述

 

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

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

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

 

 

例子 1

"Cat",1=>"Dog",2=>"Horse"); $a2=array(2=>"Bird",0=>"Cat",4=>"Fish"); print_r(array_intersect_key($a1,$a2)); ?>

输出:

Array ( [0] => Cat [2] => Horse )

 

 

例子 2

"Cat",1=>"Dog",2=>"Horse"); $a2=array(2=>"Bird",3=>"Rat",4=>"Fish"); $a3=array(2=>"Dog",6=>"Cow",7=>"Bird"); print_r(array_intersect_key($a1,$a2,$a3)); ?>

输出:

Array ( [2] => Horse )

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