Skip to content
Advertisement

How to create nested array ancestors recursively in PHP

I’m using PHP 7.3. I want to create a nested array that each item must contain its own ancestors.

Original Array:

JavaScript

Required Array:

JavaScript

I tried to use this solution, but I think this problem is different. Any help / guidance is greatly appreciated! Thanks.

Advertisement

Answer

You could first make use of array_column to group your entries by ID, then array_reduce to build your new array that includes ancestors (without altering the base one):

JavaScript

Demo

Note that this assumes parent entries are always present before their children in the original array, as you mentioned in the comments.

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