Skip to content
Advertisement

How can I recursively search for and replace values inside of an unknown-depth multidimensional PHP array?

I’m working with a JSON string. I’m converting it to an associative array to find specific values and change those values when a certain key is found ([‘content’]). The depth of the array is always unknown and will always vary.

Here is the function I wrote. It takes an array as an argument and passes it by reference so that the variable itself is modified rather than a copy of it scoped locally to that function.

JavaScript

What I’m expecting to happen is every time a key [‘content’] is found at no matter what depth, it replaces with that value specified in the $data argument.

But, when I var_dump($json_array) Those values are unchanged.

What am I missing?

Advertisement

Answer

With array_walk_recursive:

JavaScript

And without references:

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