Skip to content
Advertisement

How to retrieve updates, deletions, and additions between multi-dimensional arrays in PHP?

I have 2 multi-dimensional arrays. Essentially, one of them is an array that is constantly updated. I would like to find the updates aka additions and deletions between the arrays. For instance, I have some data as follows:

Updated/new array (Array #1):

JavaScript

Old array (Array #2):

JavaScript

What I’ve done so far is the following:

JavaScript

This doesn’t give me the exact output I want.

Here’s the output it gives me:

JavaScript

What I would like is something more like this:

JavaScript

Any help would be very much appreciated. Thanks!

EDIT:

Forgot to add an edge case for if arrays inside the multi-dimensional array have the same values.

JavaScript

So now we have 2 objectclass’s that are the same in each array. Upon running the code, we get the following:

JavaScript

If we could remove the [objectclass] => it would be great.

Advertisement

Answer

You could probably do this with a recursive array iterator but I am just using a couple functions. The first function recordChanges(), could be refactored since the top half is using the same logic (essentially) as the second half, but you get the idea:

JavaScript

This will give you:

JavaScript

Note that you can not have the same-named key because they will overwrite each other, so to keep keys, you would have to append the keys.

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