PHP array_diff_ukey() Function

PHP array_diff_ukey Function


Description :
The array_diff_ukey() function compares the keys of two (or more) arrays, and returns the differences.

Note: This function uses a user-defined function to compare the keys!

This function compares the keys of two (or more) arrays, and return an array that contains the entries from array1 that are not present in array2 or array3, etc.

Syntax:
array_diff_ukey(array1, array2, array3, ..., myfunction)

Parameter Values

Parameter Description
array1 Required. The array to compare from
array2 Required. An array to compare against
array3,... Optional. More arrays to compare against
myfunction Required. A string that define a callable comparison function. The comparison function must return an integer <, =, or > than 0 if the first argument is <, =, or > than the second argument

Example1 : Compare the keys of two arrays (using a user-defined key comparison function), and return the differences:
Output :

Array
(
    [c] => house
)

Example2 : Compare the keys of three arrays (use a user-defined function to compare the keys), and return the differences:

Output : Array ( [c] => designing )