PHP Manual: array_diff_key
array_diff_key
Description
array array_diff_key ( array array1, array array2 [, array ...] )
Compares the keys from array1 against the keys
from array2 and returns the difference.
This function is like array_diff() except the
comparison is done on the keys instead of the values.
Parameters
array1The array to compare from
array2An array to compare against
...More arrays to compare against
Return Values
Returns an array containing all the entries from
array1 that are not present in any of the other arrays.
Examples
Notes
Note: This function only checks one dimension of a n-dimensional array. Of course you can check deeper dimensions by using array_diff_key($array1[0], $array2[0]);.
See Also
| array_diff() |
| array_udiff() |
| array_diff_assoc() |
| array_diff_uassoc() |
| array_udiff_assoc() |
| array_udiff_uassoc() |
| array_diff_ukey() |
| array_intersect() |
| array_intersect_assoc() |
| array_intersect_uassoc() |
| array_intersect_key() |
| array_intersect_ukey() |