What\'s the fastest way to compare if the keys of two arrays are equal?
for eg.
array1: array2: \'abc\' => 46, \'abc\' => 46, \'d
Use array_keys to get array of keys and then use array_diff.
OR
Use array_diff_key directly.