Home> php教程> php手册> body text

php-Arrays函数-array_diff_key-使用键名比较计算数组的差值

WBOY
Release: 2016-06-13 10:49:54
Original
962 people have browsed it

array_diff_key() 函数 使用键名比较计算数组的差集

【功能】
该函数将返回一个数组,
该数组包含了所有在array1中但是不在其他任何参数数组中的键名的值。
【使用范围】
>=5.1.0
【使用】
array array_diff_key( array array1, array array2[,array...] )
array1/必需/数组1
array2/必需/比较的数组 最少得有一个
array.../可选/用来比较的数组
【示例】
[php]

$arr1 = array( "key1" => "val1", "key2" => "val2" );
$arr2 = array( "key1" => "val1", "key3" => "val2" );
$arr3 = array( "key2" => "val2" );
print_r( array_diff_key( $arr1, $arr2 ) );
print_r( array_diff_key( $arr1, $arr3 ) );
print_r( array_diff_key( $arr1, $arr2, $arr3 ) );
/*
Array
(
[key2] => val2
)
Array
(
[key1] => val1
)
Array
(
)
*/


摘自 zuodefeng的笔记

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
Popular Recommendations
    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!