У меня есть многомерный массив, и я пытаюсь выяснить, как просто «повторить» элементы массива.Глубина массива неизвестна, поэтому он может быть глубоко вложенным.
В случае массива ниже, правильный порядок эхо будет:
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
(
)
)
)