0

我有以下代码:

for($i=0; $i<count($gallery);$i++)
{
    $temp = array();
    $temp = $gallery[$i];
    echo "<img src='". $temp->path . "' />";

}

现在此代码将内容打印在一行中。我只想每行打印 3 个,然后创建新行并打印另外 3 个,依此类推。如何才能做到这一点?

感谢支持:)

编辑:错误

遇到 PHP 错误

严重性:通知

消息:未定义的偏移量:5

文件名:views/profile.php

行号:105

遇到 PHP 错误

严重性:通知

消息:试图获取非对象的属性

文件名:views/profile.php

行号:106

4

4 回答 4

5

你可以做

$n = 3;
echo "<table><tr>";
for($i=0; $i<count($gallery);$i++){
    $temp = array();
    $temp = $gallery[$i];
    echo "<td><img src='". $temp->path . "' /></td>";
    if($i % $n ==0 && $i!=0 ){
        echo "</tr><tr>";
    }
}
echo '</tr></table>';

编辑:

如果您想以“正确”的方式进行操作 - 通过构建语法正确的 HTML,您需要执行以下操作:

$n = 3;
echo "<table><tr>"; 
$gallery_count = count($gallery);
for($i=0; $i<$gallery_count; $i++){
    $temp = array();
    $temp = $gallery[$i];
    echo "<td><img src='". $temp->path . "' /></td>";

    if($i != 0){
        if($i % $n == 0 && $i != $gallery_count-1){
            echo "</tr><tr>";
        }
        else{
            echo ""; //if it is the last in the loop - do not echo
        }
    }
}

//example - if the last 2 `td`s are  missing:
$padding_tds  = $gallery_count % $n;
if($padding_tds != 0 ){
    $k = 0;
    while($k < $padding_tds){
       echo "<td>&nbsp;</td>";
    }
}
echo '</tr></table>';
于 2013-04-17T20:32:06.153 回答
0

您只需要modulus检查已打印的数量 - 3 的任何倍数都会添加中断。

$x=0;
for($i=0; $i<count($gallery);$i++)
{
    $x++;       
    $temp = array();
    $temp = $gallery[$i];
    echo "<img src='". $temp->path . "' />";
    if (($x%3)==0) { echo "<br />"; }

}
于 2013-04-17T20:33:42.773 回答
0

我只是用表格重新做了它,它更整洁,因为每件东西都会被格式化以看起来正确。这有点乱,因为我只是添加了一点 if 语句来释放表。

<table>
<?php
$number_per_row = 3;
for($i=0; $i<count($gallery);$i++)
{
    $temp = array();
    $temp = $gallery[$i];
    if(($i % $number_per_row) == 0) {
        echo "<tr>";
    }
    ?>
<td><?php echo "<img src='". $temp->path . "' />"; ?></td>
<?php
    if(($i % $number_per_row) == $number_per_row - 1) {
        echo "</tr>";
    }
}
?>
</table>
于 2013-04-17T20:47:29.450 回答
-1
$n = 3;
echo "<table>";
echo "<tr>";
for($i=0; $i<count($gallery);$i++){
    if(($i % n ==0) && ($i != 0)){
        echo "</tr><tr>";
    }
    $temp = array();
    $temp = $gallery[$i];
    echo "<td><img src='". $temp->path . "' /></td>";
}
echo "</tr>";
echo '</table>';``
于 2013-04-17T20:46:16.480 回答