array_intersect_uassoc

(PHP 5, PHP 7)

array_intersect_uassoc����������������Ľ������ûص������Ƚ�����

˵��

array_intersect_uassoc ( array $array1 , array $array2 [, array $... ], callable $key_compare_func ) : array

array_intersect_uassoc() ����һ�����飬����������������� array1 ��Ҳͬʱ�����������������������е�ֵ��ע��� array_intersect() ��ͬ���Ǽ���Ҳ���ڱȽϡ�

����

array1

Initial array for comparison of the arrays.

array2

First array to compare keys against.

...

Variable list of array arguments to compare values against.

key_compare_func

�ڵ�һ������С�ڣ����ڻ���ڵڶ�������ʱ���ñȽϺ���������Ӧ�ط���һ��С�ڣ����ڻ���� 0 ��������

callback ( mixed $a, mixed $b ) : int

����ֵ

Returns the values of array1 whose values exist in all of the arguments.

����

Example #1 array_intersect_uassoc() ����

<?php
$array1 
= array("a" => "green""b" => "brown""c" => "blue""red");
$array2 = array("a" => "GREEN""B" => "brown""yellow""red");

print_r(array_intersect_uassoc($array1$array2"strcasecmp"));
?>

�������̻������

Array
(
    [b] => brown
)

�μ�