GLOB 配列を介して取得した画像を含む各セルを使用して、変数 ($cols) で設定できる列の数を含むテーブルを作成する必要があります。私が今持っているコードは、正しい量のセルと列を含むテーブルを出力しますが、各画像を表示するには助けが必要です.
<?php
$cols = 4;
$array = glob("include/*.{jpg}", GLOB_BRACE);
$output = "<table>\n";
$cell_count = 1;
for ($i = 0; $i < count($array); $i++) {
if ($cell_count == 1) {
$output .= "<tr>\n";
}
$output .= "<td><img src=$array></td>\n";
$cell_count++;
if ($cell_count > $cols || $i == (count($array) - 1)) {
$output .= "</tr>\n";
$cell_count = 1;
}
}
$output .= "</table>\n";
echo "$output";
?>