<legend id='1uBXT'><style id='1uBXT'><dir id='1uBXT'><q id='1uBXT'></q></dir></style></legend>
    1. <tfoot id='1uBXT'></tfoot>

      <small id='1uBXT'></small><noframes id='1uBXT'>

    2. <i id='1uBXT'><tr id='1uBXT'><dt id='1uBXT'><q id='1uBXT'><span id='1uBXT'><b id='1uBXT'><form id='1uBXT'><ins id='1uBXT'></ins><ul id='1uBXT'></ul><sub id='1uBXT'></sub></form><legend id='1uBXT'></legend><bdo id='1uBXT'><pre id='1uBXT'><center id='1uBXT'></center></pre></bdo></b><th id='1uBXT'></th></span></q></dt></tr></i><div id='1uBXT'><tfoot id='1uBXT'></tfoot><dl id='1uBXT'><fieldset id='1uBXT'></fieldset></dl></div>
      • <bdo id='1uBXT'></bdo><ul id='1uBXT'></ul>

      如何在php中的foreach语句的每三个结果上输出一个

      时间:2023-09-23

        <bdo id='YLnZg'></bdo><ul id='YLnZg'></ul>
            <tbody id='YLnZg'></tbody>

              <tfoot id='YLnZg'></tfoot>
              1. <small id='YLnZg'></small><noframes id='YLnZg'>

                <i id='YLnZg'><tr id='YLnZg'><dt id='YLnZg'><q id='YLnZg'><span id='YLnZg'><b id='YLnZg'><form id='YLnZg'><ins id='YLnZg'></ins><ul id='YLnZg'></ul><sub id='YLnZg'></sub></form><legend id='YLnZg'></legend><bdo id='YLnZg'><pre id='YLnZg'><center id='YLnZg'></center></pre></bdo></b><th id='YLnZg'></th></span></q></dt></tr></i><div id='YLnZg'><tfoot id='YLnZg'></tfoot><dl id='YLnZg'><fieldset id='YLnZg'></fieldset></dl></div>
              2. <legend id='YLnZg'><style id='YLnZg'><dir id='YLnZg'><q id='YLnZg'></q></dir></style></legend>
              3. 本文介绍了如何在php中的foreach语句的每三个结果上输出一个值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我的应用程序中有一个 foreach 语句,用于回显我的数据库结果列表:

                ';回声 $fp['project_name'];回声'</div>';}?>

                我想:

                每隔三个结果,给 div 一个不同的类.我怎样才能做到这一点?

                解决方案

                您可以使用计数器和 模数/模数运算符如下:

                I have a foreach statement in my app that echos a list of my database results:

                <?php
                
                foreach($featured_projects as $fp) {
                  echo '<div class="result">';
                  echo $fp['project_name'];
                  echo '</div>';
                }
                
                ?>
                

                I would like to:

                On every third result, give the div a different class. How can I achieve this?

                解决方案

                You can use a counter and the modulo/modulus operator as per below:

                <?php
                
                // control variable
                $counter = 0;
                
                foreach($featured_projects as $fp) {
                
                    // reset the variable
                    $class = '';
                
                    // on every third result, set the variable value
                    if(++$counter % 3 === 0) {
                        $class = ' third';
                    }
                
                    // your code with the variable that holds the desirable CSS class name
                    echo '<div class="result' . $class . '">';
                    echo $fp['project_name'];
                    echo '</div>';
                }
                
                ?>
                

                这篇关于如何在php中的foreach语句的每三个结果上输出一个值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:更改 foreach 循环内的值不会更改正在迭代的数组 下一篇:千篇一律的foreach优化

                相关文章

                最新文章

                  <i id='hP4nA'><tr id='hP4nA'><dt id='hP4nA'><q id='hP4nA'><span id='hP4nA'><b id='hP4nA'><form id='hP4nA'><ins id='hP4nA'></ins><ul id='hP4nA'></ul><sub id='hP4nA'></sub></form><legend id='hP4nA'></legend><bdo id='hP4nA'><pre id='hP4nA'><center id='hP4nA'></center></pre></bdo></b><th id='hP4nA'></th></span></q></dt></tr></i><div id='hP4nA'><tfoot id='hP4nA'></tfoot><dl id='hP4nA'><fieldset id='hP4nA'></fieldset></dl></div>
                  • <bdo id='hP4nA'></bdo><ul id='hP4nA'></ul>
                1. <tfoot id='hP4nA'></tfoot>

                  <small id='hP4nA'></small><noframes id='hP4nA'>

                    <legend id='hP4nA'><style id='hP4nA'><dir id='hP4nA'><q id='hP4nA'></q></dir></style></legend>