Skip to content
Advertisement

PHP Multidimensional Array: Extract parent array when element value has unique ID

I have a multidimensional array with an unknown number of levels. If a child array element contains a unique value, then how do I extract the parent array for use in PHP?

My array looks similar to this, except I don’t know how may grandparents the key/value has (or this would be a lot easier).

JavaScript

)

Finding the path to the parent might also work so I can walk to the values I need without extracting. That solution is similar to this getkeypath() function from Drummin , except the author is matching a key instead of a value. This is a problem for me because my key is is not unique, but my value is.

Advertisement

Answer

Recursive function is definitely the way to go with an unknown number of parents.

JavaScript

Then you’ll call the getBlock method with your parent array.

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