循环遍历多维数组



我有一个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),并且对于"页面"的每个块,我想添加额外的数据。

例如,工作应该像这样:

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"作为关键时都保持循环。我已经尝试过很多次了,但是一直在删除代码。

任何帮助这将是伟大的!

您正在寻找一个递归函数,该函数将数组扫描到深度为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)

来使用它

相关内容

  • 没有找到相关文章