我必须制作一个表格,其中包含可以由变量($cols)设置的列数量,每个单元格都包含通过 GLOB 数组获得的图片。我现在拥有的代码将输出一个包含正确数量的单元格和列的表格,但我需要帮助才能显示每张图片。
<?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";
?>