次のようにPHPで多次元配列を設定しました:
$contents = array(
"Header1" => array(
"Section 1" => array (
"Description1",
"Notes1",
),
"Gap" => "Gap",
"Section 2" => array (
"Description2",
"Notes2",
),
"Gap" => "Gap",
"Section 3" => array (
"Description3",
"Notes3",
),
),
);
次に、この配列を次のようにループします。
foreach ($contents as $header => $section) {
foreach ($section as $title => $details) {
echo $title."<br>";
}
}
出力は次のようになります。
Section1
Gap
Section2
Section3
2 番目の「ギャップ」が表示されないのはなぜですか?
ありがとう