array_diff_uassoc
Compares array against arrays and returns the difference. Unlike array_diff the array keys are used in the comparison.
Unlike array_diff_assoc a user supplied callback function is used for the indices comparison, not internal function.
Parameters
- array
-
The array to compare from
- arrays
-
Arrays to compare against
- key_compare_func
-
The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second.
callback(mixed$a,mixed$b ): int
Return Values
Returns an array containing all the entries from array that are not present in any of the other arrays.
Notes
Note:
This function only checks one dimension of a n-dimensional array. Of course you can check deeper dimensions by using, for example, array_diff_uassoc($array1[0], $array2[0], "key_compare_func");.