How to created nested multi dimensional array from database result array with parent id
问题 I am new to this. I am learning ZF2 where I need to form a nested multi dimensional array from database values. My database table: +-------------+----------------+---------------------+--------+ | category_id | name | parent_category_ids | status | +-------------+----------------+---------------------+--------+ | 1 | New Category | 1 | 1 | | 3 | ddd | 1 | 1 | | 4 | test1 | 3 | 0 | | 5 | Test123 recipe | 3 | 1 | | 6 | abceg | 3 | 1 | | 7 | xyz | 6 | 1 | +-------------+----------------+--------