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

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

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

        <tfoot id='Fsz8B'></tfoot>

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

        来自爆炸数组的 PHP 表

        时间:2023-10-04

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

            <tbody id='ILB0T'></tbody>

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

                  本文介绍了来自爆炸数组的 PHP 表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有这样的数据:

                  something something_description, something2 something2_description, something3 something3_description...
                  

                  现在我需要用 PHP 来获取表格:

                  And now I need with PHP to get table as:

                  <tr><td>something</td><td>something_description</td></tr>
                  <tr><td>something2</td><td>something2_decription</td></tr>
                  

                  我不知道会有多少something"和something_decriptions",所以我需要设置一些循环.

                  I don't know how many "something" and "something_decriptions" will it be so I need to set some loop.

                  现在我有这个代码:

                  $data = explode(',',$query);
                  

                  从中我会得到如下数组:

                  from that I will get array like:

                  [0] => something something_description
                  

                  现在我怎样才能把它放到表格中?

                  Now how can I put this into table?

                  在网上我找到了一些将数组排序到表格的例子,但这是在explode"中还有一个explode"

                  On net I found some examples for sorting array to table, but this is with one more "explode" inside "explode"

                  我需要一些帮助.

                  推荐答案

                  可能你正在寻找这个:

                      $data = explode(',',$query);
                  
                      echo '<table>';
                      foreach($data as $row){
                          echo '<tr>';
                          $row = explode(' ',$row);
                          foreach($row as $cell){
                              echo '<td>';
                              echo $cell;
                              echo '</td>';
                          }
                          echo '</tr>';
                      }
                      echo '</table>';
                  

                  这篇关于来自爆炸数组的 PHP 表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:排列成每行 5 个单元格的表格 下一篇:透视 mysql 结果集并创建 html 表/矩阵

                  相关文章

                  最新文章

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

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