У меня есть многомерный массив, и я пытаюсь выяснить, как просто "эхо" элементы массива. Глубина массива неизвестна, поэтому он может быть глубоко вложен.
В приведенном ниже массиве правильный порядок эха будет:
This is a parent comment
This is a child comment
This is the 2nd child comment
This is another parent comment
Это массив, о котором я говорил:
Array
(
[0] => Array
(
[comment_id] => 1
[comment_content] => This is a parent comment
[child] => Array
(
[0] => Array
(
[comment_id] => 3
[comment_content] => This is a child comment
[child] => Array
(
[0] => Array
(
[comment_id] => 4
[comment_content] => This is the 2nd child comment
[child] => Array
(
)
)
)
)
)
)
[1] => Array
(
[comment_id] => 2
[comment_content] => This is another parent comment
[child] => Array
(
)
)
)