2次元配列の内容を、1行づつ全て表示

2次元配列の内容を、1行づつ全て表示する方法。

サンプル

PHPコード

<?php

$array = array(
    array( "1-1", "1-2", "1-3" ),
    array( "2-1", "2-2", "2-3" ),
    array( "3-1", "3-2", "3-3" ),
);
$sampleOutput = "";
for ( $indexA = 0; $indexA < count( $array ); $indexA++ ) {
    for ( $indexB = 0; $indexB < count( $array[$indexA] ); $indexB++ ) {
        $sampleOutput .= "{$array[$indexA][$indexB]},";
        if ( $indexB == count( $array[$indexA] ) - 1  ) {
            $sampleOutput .= "<br />\n";
        }
    }
}
echo "{$sampleOutput}";

?>

↓↓↓出力結果↓↓↓

出力結果

HTMLコード

1-1,1-2,1-3,<br>
2-1,2-2,2-3,<br>
3-1,3-2,3-3,<br>

ブラウザ表示例

1-1,1-2,1-3,
2-1,2-2,2-3,
3-1,3-2,3-3,

スポンサード リンク

カテゴリー: PHP, 逆引き, 配列 パーマリンク