0

我得到了一组 624 张图片,女巫的名字如下:

1n1e.png
1n2e.png
..
2n1e.png
2n2e.png

等等。最大“n”值为 13,最大“e”值为 48,我的意思是 - 13n48e

我想创建一个 13x48 的表格,并相应地放置所有这些图像。

1n1e is located in bottom left corner, 
13n1e is at the top left corner, 
13n48e at the top right corner, 
1n48e at the bottom right corner.

编辑:我有这个旧代码,但它不能像我想的那样工作:

echo "<table border='1'>";
$oldIndex=0;
$row=1;
foreach($images as $image)
{
    if(substr($image,0,1)!=$oldIndex)
    {
    if($row>1){echo "</tr>";}

    echo "<tr>";
    $oldIndex=substr($image,0,1);
    $row++;
    }
    echo "<td>$image</td>";

}

echo "</table>";
4

1 回答 1

0

..像这样的东西?

echo "<table>";
for( $n =13; $n >= 1; $n-- )
{
    echo "<tr>";
    for ( $e = 1; $e <= 48; $e++ )
    {
         echo "<td>";
         echo image $n $e
         echo "</td>";

    }
    echo "</tr>";
}
echo "</table>";
于 2013-03-29T12:14:21.317 回答