如何学习PHP array_diff_key_PHP教程

WBOY
Release: 2016-07-13 10:23:46
Original
1175 people have browsed it

如何学习PHP array_diff_key

定义和用法

array_diff_key() 函数返回一个数组,该数组包括了所有在被比较的数组中,但是不在任何其他参数数组中的键。

语法

array_diff_key(array1,array2,array3...)

参数

描述

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

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

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

提示和注释

提示:可用一个或任意多个数组与第一个数组进行比较。

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

例子

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

输出:

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

www.bkjia.com true http://www.bkjia.com/PHPjc/834956.html TechArticle 如何学习PHP array_diff_key 定义和用法 array_diff_key() 函数返回一个数组,该数组包括了所有在被比较的数组中,但是不在任何其他参数数组中的...
Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!