I have this database structure:
USERS
-----------------------------
| id | parent | name | points
-----------------------------
I need to get from this structure the multiple nesting (hierarchical) array.
For example, from this data:
USERS
------------------------------
| id | parent | name | points
------------------------------
| 1 | null | A | 20
| 2 | 1 | B | 10
| 3 | 1 | C | 30
| 4 | 3 | D | 40
| 5 | 2 | E | 50
------------------------------
how to get following php array:
[
"1" => [
"points" => 20,
"childs" => [
"2" => [
"points" => 10,
"childs" => [
"5" => [
"points" => 50,
"childs" => null
]
]
],
"3" => [
"points" => 30,
"childs" => [
"4" => [
"points" => 40,
"childs" => null
]
]
]
]
]
]
Thanks!
Here is a working example with infinite depth:
The result is:
ordered
contains an array of data "ordered" by id (so you can search for a item easily) Andresult
contains data hierarchy.Hope it helps