I have a multidimensional array of a discussion.
I'm using a recursive function (see below) to echo the values (comments) of this array. But with my function only the first child comment (per array level) appears.
How can I adapt this function, so that I can echo all child comments per array level, like in a normal discussion board?
In this example array the comment_id "4" and the comment_id "7" are on the same level, but with my current function only comment_id "4" comments is viewed.
Array
(
[0] => Array
(
[comment_id] => 1
[comment_content] => This is a comment...
[child] => Array
(
[0] => Array
(
[comment_id] => 3
[comment_content] => This is a reply to the comment...
[child] => Array
(
[0] => Array
(
[comment_id] => 4
[comment_content] => This is a reply to the reply...
[child] => Array
(
)
)
[1] => Array
(
[comment_id] => 7
[comment_content] => This is a another reply to the reply...
[child] => Array
(
)
)
)
)
)
)
[1] => Array
(
[comment_id] => 2
[comment_content] => This is another comment...
[child] => Array
(
)
)
[2] => Array
(
[comment_id] => 6
[comment_content] => This is another comment...
[child] => Array
(
)
)
)
My current function looks like this:
function RecursiveWrite($array) {
foreach ($array as $vals) {
echo $vals['comment_content'] . "\n";
RecursiveWrite($vals['child']);
}
}