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

array_diff_key:根据数组键计算多个数组的差集

WBOY
Release: 2016-06-06 19:39:35
Original
1364 people have browsed it

array_diff_key($array1,array$array2......) 返回一个键在第一个数组但是不在其他数组的新数组 $arr1 = array('a'='aa','b'='bb','c'='cc','d'='dd');$arr2 = array('a'='aaa','b'='bbb','f'='fff');$arr = array_diff_key($arr1,$arr2);echo 'pre';print_r

array_diff_key( $array1 , array $array2 ...... )
返回一个键在第一个数组但是不在其他数组的新数组

$arr1 = array('a'=>'aa','b'=>'bb','c'=>'cc','d'=>'dd');
$arr2 = array('a'=>'aaa','b'=>'bbb','f'=>'fff');

$arr = array_diff_key($arr1,$arr2);

echo '<pre class="brush:php;toolbar:false">';
print_r($arr);

result:
Array
(
    [c] => cc
    [d] => dd
)
Copy after login

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
Popular Tutorials
More>
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!