循环通过多维数组

时间:2013-04-10 04:36:02

标签: php arrays loops multidimensional-array

我有一个类似于此的JSON文件:

{
"Pages":{
        "/":{
            "Name": "Home",
            "Page": "index.php"
        },

        "/_admin":{
            "Name": "Admin",
            "Page": "_admin/index.php",

            "Template": "admin",
            "MobileTemplate": "admin-mobile",

            "Pages":{

                "/settings":{
                    "Name": "Settings",
                    "Page": "_admin/settings/index.php",
                    "Config": "_admin/settings/config.php",

                    "Pages":{

                        "/user":{
                            "Name": "Users",
                            "Page": "_admin/settings/user.php",
                            "Config": "_admin/settings/config.php",
                            "CatchAll": true
                        }

                    }

                }
            }
        },

        "/tasdf":{
            "Name": "fs",
            "Page": "index.php"
        }
    }
}

我正在尝试循环遍历此数组(我已使用JSON解码将其转换为PHP),并且对于“Pages”的每个块,我想添加额外的数据。

例如,工作应该如下所示:

Array Loop Starts
Finds "Pages"
    -Goes through "/"
    -No "Pages" - continue
   - Goees through "/_admin"
       -Finds "Pages"
       -Goes through "/settings"
           -Finds "Pages"
           -Goes Through "/user"
           -No Pages Continue
   - Goes through "/tasdf"
   - No "Pages" - continue
 End Loop

每次它通过一个部分,我希望它与另一个数组合并。

我正在努力编写代码,以便在每次找到单词“Pages”作为密钥时都会保持循环。我已多次尝试,但一直在废弃我的代码。

任何帮助都会很棒!

1 个答案:

答案 0 :(得分:5)

您正在寻找一种递归函数,可以将数组扫描到n深度。这样的事情可以奏效:

function findPagesInArray($myArray) {
    foreach($myArray as $index => $element) {
        // If this is an array, search deeper
        if(gettype($element) == 'array') {
            findPagesInArray($element);
        }

        // Reached the Pages..
        if($index == 'Pages') {
            // Do your task here
        }
    }
}

您现在可以通过拨打findPagesInArray($json_object)

来使用它