public static NestedArray::mergeDeepArray(array $arrays, $preserve_integer_keys = FALSE)
Merges multiple arrays, recursively, and returns the merged array.
This function is equivalent to NestedArray::mergeDeep(), except the input arrays are passed as a single array parameter rather than a variable parameter list.
The following are equivalent:
NestedArray::mergeDeep($a, $b);
NestedArray::mergeDeepArray(array($a, $b));
The following are also equivalent:
call_user_func_array('NestedArray::mer