array_diff_ukey

PHP 5 >= 5.1.0, PHP 7, PHP 8
array_diff_ukey - Computes the difference of arrays using a callback function on the keys for comparison
Manual
Code Examples

array_diff_ukey( array$array, ... array$arrays, callable$key_compare_func ): array

Compares the keys from array against the keys from arrays and returns the difference. This function is like array_diff except the comparison is done on the keys instead of the values.

Unlike array_diff_key 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 array_diff_ukey($array1[0], $array2[0], 'callback_func');.

Related Functions

Example of array_diff_ukey

Show all examples for array_diff_ukey

PHP Version: