PHP çok boyutlu bir dizi Echo

0 Cevap php

Ben çok boyutlu bir dizi var ve ben sadece dizinin elemanları "echo" öğrenmek için çalışıyorum. Dizinin derinliği bilinmemektedir, bu nedenle iç içe olabilir.

Aşağıdaki dizinin durumunda, yankı doğru sipariş olacaktır:

This is a parent comment
This is a child comment
This is the 2nd child comment
This is another parent comment

Bu bahsettiğim dizidir:

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
                (
                )
        )
)

0 Cevap