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

  • <tfoot id='FYgCN'></tfoot>

      <bdo id='FYgCN'></bdo><ul id='FYgCN'></ul>

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

        <i id='FYgCN'><tr id='FYgCN'><dt id='FYgCN'><q id='FYgCN'><span id='FYgCN'><b id='FYgCN'><form id='FYgCN'><ins id='FYgCN'></ins><ul id='FYgCN'></ul><sub id='FYgCN'></sub></form><legend id='FYgCN'></legend><bdo id='FYgCN'><pre id='FYgCN'><center id='FYgCN'></center></pre></bdo></b><th id='FYgCN'></th></span></q></dt></tr></i><div id='FYgCN'><tfoot id='FYgCN'></tfoot><dl id='FYgCN'><fieldset id='FYgCN'></fieldset></dl></div>
      1. 带有 HTML 的 PHP 简单 foreach 循环

        时间:2023-09-23
          <legend id='PBSob'><style id='PBSob'><dir id='PBSob'><q id='PBSob'></q></dir></style></legend>
            <tbody id='PBSob'></tbody>

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

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

              1. <tfoot id='PBSob'></tfoot>

                  本文介绍了带有 HTML 的 PHP 简单 foreach 循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想知道实际编写以下内容是否效果最好,例如:

                  I am wondering if it will work best to actually write the following for example:

                  <table>
                      <?php foreach($array as $key=>$value){ ?>
                      <tr>
                          <td><?php echo $key; ?></td>
                      </tr>
                      <?php } ?>
                  </table>
                  

                  所以基本上是在 foreach 循环中嵌入 HTML,但不使用 echo 打印表格标签.这会奏效吗?我知道在 JSP 中这是有效的.

                  So basically embedding HTML inside foreach loop but without using echo to print the table tags. Will this work? I know in JSP this works.

                  推荐答案

                  虽然在 HTML 中嵌入 PHP 时最好使用以下形式,但这种方法会起作用:

                  This will work although when embedding PHP in HTML it is better practice to use the following form:

                  <table>
                      <?php foreach($array as $key=>$value): ?>
                      <tr>
                          <td><?= $key; ?></td>
                      </tr>
                      <?php endforeach; ?>
                  </table>
                  

                  您可以找到有关 PHP 替代语法的文档.净

                  这篇关于带有 HTML 的 PHP 简单 foreach 循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:每行仅显示 3 个 foreach 结果 下一篇:获取 foreach 循环中的下一个元素

                  相关文章

                  最新文章

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

                      <tfoot id='ylHYQ'></tfoot>

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