Skip to content
Advertisement

PHP’s array_merge_recursive behaviour on integer keys

Is there an approach for recursively merging arrays, in the same way as PHP’s array_merge_recursive() function does, except that integer keys are treated the same as string keys?

(It’s important for the process that the keys remain parse-able as integers.)

For example:

JavaScript

Will merge the on the "a" key and output, as expected, the following:

JavaScript

However, when using integers for keys (even when as a string):

JavaScript

array_merge_recursive() will return:

JavaScript

Instead of the much desired:

JavaScript

Thoughts?

Advertisement

Answer

you can prefix the array keys with a short string:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement