array_uintersect_assoc

 array array_uintersect_assoc ( array $array1 , array $array2 [, array $ ... ], callback $data_compare_func ) 

説明

Computes the intersection of arrays with additional index check, compares data by a callback function. Note that the keys are used in the comparison unlike in array_uintersect(). The data is compared by using a callback function.

戻り値

Returns an array containing all the values of array1 that are present in all the arguments.