猿问

PHP:遍历多维数组 (4D)

我有一个结构如下的多维数组。它模拟了一个文件结构,该文件结构基于./YEAR/MONTH/DAY/FILE 存储文件。


Array

(

    [2019] => Array

        (

            [05] => Array

                (

                    [12] => Array

                        (

                            [0] => default.md

                        )

                )


            [12] => Array

                (

                    [22] => Array

                        (

                            [0] => default.md

                        )

                )

        )


    [2020] => Array

        (

            [05] => Array

                (

                    [19] => Array

                        (

                            [0] => default.md

                        )

                )

        )

)

我试图遍历整个数组并获取每个特定文件的值,同时还获取该指定文件的关联 YEAR、MONTH 和 DAY。


当我试图在 for 循环中嵌套多个 foreach 循环时,我的循环偏离了方向。我越深入兔子洞,遇到的问题就越多


$post_search = directoryArrayMap("content"); //function that creates the array


$year = array_keys($post_search);


for($i = 0; $i < count($post_search); $i++ ) {

    echo $year[$i] . "<br>";

    foreach($post_search[$year[$i]] as $month => $day ) {

        echo $month[$i] . "<br>";

        foreach($post_search[$key[$month[$i]]] as $day => $post_file ) {

            echo $day . "<br>";

        }

    }

}

我正在寻找迭代多维数组的最佳方法。谢谢。我想要的输出是这样的:


File A:

Year: 2020

Month: 05

Day: 12


File B:

Year: 2019

Month: 12

Day: 22


File C:

Year: 2019

Month: 05

Day: 19

目标是将其与另一个检查“is_file”并显示输出的循环一起运行。


长风秋雁
浏览 142回答 2
2回答

慕姐4208626

通过使用一系列嵌套的foreachwithkey => value迭代器,你可以获得你想要的输出;关键是在到达循环底部之前不要输出日期部分:foreach ($post_search as $year => $months) {    foreach ($months as $month => $days) {        foreach ($days as $day => $files) {            foreach ($files as $file) {                echo "File $file:\nYear: $year\nMonth: $month\nDay: $day\n";            }        }    }}输出(对于您的样本数据):File default.md:Year: 2019Month: 5Day: 12File default.md:Year: 2019Month: 12Day: 22File default.md:Year: 2020Month: 5Day: 19

小怪兽爱吃肉

使用函数来处理令人困惑的嵌套方面应该会有很大帮助。我的例子绝不是一个可靠的解决方案。就个人而言,我可能会将这些函数放在一个类中并使其面向对象......但这绝对不是适合所有情况的正确解决方案。您必须对此进行调整,但希望这个概念对您有所帮助。function handleYear($year,$arrOfMonths){&nbsp; &nbsp; &nbsp;echo $year;&nbsp; &nbsp; &nbsp;foreach ($arrOfMonths as $month=>$arrOfDays){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;handleMonth($month,$arrOfDays);&nbsp; &nbsp; &nbsp;}}function handleMonth($month,$arrOfDays){&nbsp; &nbsp; &nbsp;echo $month;&nbsp; &nbsp; &nbsp;foreach ($arrOfDays as $dayOfMonth=>$listOfFiles){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;handleDay($dayOfMonth,$listOfFiles);&nbsp; &nbsp; &nbsp;}}//to get startedforeach ($data as $year=>$arrOfMonths){&nbsp; &nbsp; echo $year;&nbsp; &nbsp; handleYear($year, $arrOfMonths);}您还可以修改子函数以接受父参数。喜欢handleMonth也可以在年里度过,然后handleYear就过去了$year。编辑:看到你想要的输出后......我建议将年份和月份传递给函数handleDay。然后handleDay可能是这样的:function handleDay($day,$arrOfFiles,$year,$month) use (&$files){&nbsp; &nbsp; foreach ($arrOfFiles as $index=>$fileName){&nbsp; &nbsp; &nbsp; &nbsp; $file = ['year'=>$year,'month'=>$month,'day'=>$day];&nbsp; &nbsp; &nbsp; &nbsp; $files[] = $file;&nbsp;&nbsp; &nbsp; }}然后你需要$files = []在函数外声明,handleDay如果我没记错的话。但这样一来,您就拥有了一组可以非常轻松地处理的文件。就个人而言,我可能会努力工作一段时间以提出一个更清洁的解决方案(不喜欢use这种情况下的声明,我什至可能没有正确使用它)。如果它在一个类中,那么您可以使用$this->files而不是use (&$files).
随时随地看视频慕课网APP
我要回答