Home > php教程 > php手册 > array_diff:根据数组值计算数组的差集

array_diff:根据数组值计算数组的差集

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:39:23
Original
1188 people have browsed it

arrayarray_diff(array$array1,array$array2[,array$...]) 根据数组的值,返回比较数组的差集,在第一个数组而不再其他数组的值 $arr1 = ['bb'='bbb','a'='aaa','e'='ccc','d'='ddd'];$arr2 = ['c'='bbb','d'='ccc'];$arr = array_diff($arr1,$arr2);echo 'pre

array array_diff ( array $array1 , array $array2 [, array $... ] )
根据数组的值,返回比较数组的差集,在第一个数组而不再其他数组的值

$arr1 = ['bb'=>'bbb','a'=>'aaa','e'=>'ccc','d'=>'ddd'];
$arr2 = ['c'=>'bbb','d'=>'ccc'];

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

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

result:
Array
(
    [a] => aaa
    [d] => ddd
)
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
Latest Issues
How to create an array within an array?
From 1970-01-01 08:00:00
0
0
0
php array
From 1970-01-01 08:00:00
0
0
0
Array to array
From 1970-01-01 08:00:00
0
0
0
array
From 1970-01-01 08:00:00
0
0
0
php array conversion
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template