1

因此,我尝试使用 PHP 生成一些内容,其中第 n 个循环需要打开或关闭 div 元素的条件。所以我的目标是在页面和第 9 个元素上显示 8 个元素,如果有更多图像,我想关闭第 8 个元素的 div 并为第 9 个元素打开一个新的。这是我的代码。

$images; // object
$i = 1;

echo '<div class="outer-container">';

while ( $images->have_images() ) {

     if ( $i === 1 ) {
          echo '<div class="inner-container">';
     }

     echo 'content here';

     if ( $i === 8 || $images->total === $images->current + 1 ) {
          echo '</div><!--.inner-container-->';
     }

     $i++;
}

echo '</div><!--.outer-container-->';

最终结果应如下所示:

<div class="outer-container">

<div class="inner-container">
    content here
    content here
    content here
    content here
    content here
    content here
    content here
    content here
</div><!--.inner-container-->

<div class="inner-container">
    content here
    content here
    content here
</div><!--.inner-container-->

</div><!--.outer-container-->

我四处搜索并得出一个结论,我可能必须使用模数,但我不确定如何将它合并到我的代码中。

感谢您的关注。

4

3 回答 3

1

模数确实是您正在寻找的:

if ( $i % 8 === 0 ) {
    echo '</div><!--.container-->';
}
于 2013-09-16T23:39:16.233 回答
1
if ( $i % 8 == 0) {
      echo '</div><!--.container--><div class="container">';
}

Mod 运算符返回余数。您可以简单地陈述$i % 8$i % 8 == 0$i % 8 === 0 as john stated

但是您还需要在条件中打开下一个 div,具体取决于您的结构。一个例子:

<div class="outer-container">
    <div class="inner-container">
        <?php
        $images; // object
        $i = 1;

        while ( $images->have_images() ) {

             echo 'content here';
             //print_r($i % 8);
             if ( $i % 8 == 0 && $images->total > 8) {
                  echo '</div><!--.inner-container--><div class="inner-container">';
             }

             $i++;
        }
        ?>
    </div>
</div>

添加条件以防您的图像总数恰好为 8,它不会创建流​​氓空 div。

我试图理解你的评论。你是说你有一个外部容器,然后是一个内部容器,在这个内部容器内部你想要你在问题中定义的循环,其中每组 8 个包含在一个containerdiv 中?

我在循环中添加了一个 print r,您可以取消注释以验证 $i 正在执行您想要的操作。通过这段代码和 $i 从 1 开始的事实,您不应该过早地遇到关闭 div 条件。

于 2013-09-16T23:39:26.717 回答
1

你忘了打开一个新的 div

修改以下代码:

if ( $i === 8 || $images->total === $images->current + 1 ) {
    echo '</div><!--.container-->';
    echo '<div class="container">'; //ADD THIS LINE!!!
}

在你离开后while添加结束</div>标签

于 2013-09-16T23:41:47.053 回答