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

    1. <small id='CZzr9'></small><noframes id='CZzr9'>

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

        <tfoot id='CZzr9'></tfoot>

        从while循环中获取计数器的更简单方法?

        时间:2023-09-20

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

              <tfoot id='p8NIL'></tfoot>

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

                    <tbody id='p8NIL'></tbody>

                2. 本文介绍了从while循环中获取计数器的更简单方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有以下几点:

                  $counter = 1;   
                  while($row= mysql_fetch_assoc($result)) {
                      $counter2 = $counter++;
                  
                      echo($counter2 . $row['foo']);
                  }
                  

                  是否有更简单的方法可以为每个结果获得 1、2、3 等,或者这是最好的方法?

                  Is there an easier way to get 1,2,3 etc for each result or is this the best way?

                  谢谢

                  推荐答案

                  你不需要 $counter2.$counter++ 很好.如果您使用 preincrement 而不是 postincrement,您甚至可以在与 echo 相同的行上执行此操作.

                  You don't need $counter2. $counter++ is fine. You can even do it on the same line as the echo if you use preincrement instead of postincrement.

                  $counter = 0;   
                  while($row= mysql_fetch_assoc($result)) {
                      echo(++$counter . $row['foo']);
                  }
                  

                  这篇关于从while循环中获取计数器的更简单方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP While 循环只显示最后一行 下一篇:while() 和 for() 有什么区别?

                  相关文章

                  最新文章

                  <tfoot id='PFwC9'></tfoot>
                  <legend id='PFwC9'><style id='PFwC9'><dir id='PFwC9'><q id='PFwC9'></q></dir></style></legend>
                  • <bdo id='PFwC9'></bdo><ul id='PFwC9'></ul>

                  <i id='PFwC9'><tr id='PFwC9'><dt id='PFwC9'><q id='PFwC9'><span id='PFwC9'><b id='PFwC9'><form id='PFwC9'><ins id='PFwC9'></ins><ul id='PFwC9'></ul><sub id='PFwC9'></sub></form><legend id='PFwC9'></legend><bdo id='PFwC9'><pre id='PFwC9'><center id='PFwC9'></center></pre></bdo></b><th id='PFwC9'></th></span></q></dt></tr></i><div id='PFwC9'><tfoot id='PFwC9'></tfoot><dl id='PFwC9'><fieldset id='PFwC9'></fieldset></dl></div>
                3. <small id='PFwC9'></small><noframes id='PFwC9'>