把第4点转换后的数组用遍历结合table标签输出. <table> <tr> <td></td> </tr> </table>

来源:1-2 PHP数组之索引数组初始化

慕村2831784

2017-07-07 15:39

把第4点转换后的数组用遍历结合table标签输出.

<table>

      <tr>

           <td></td>

      </tr>

</table>


写回答 关注

2回答

  • weibo_宇宙阿土伯_0
    2017-09-25 14:31:17
    <?php 
    //
    $fruit = array("苹果","香蕉","菠萝");
    $strr = "<table>";
    foreach($fruit as $value){
        $strr .= "<tr><td>".$value."</td></tr>";
    }
    $strr .= "</table>";
    echo $strr;
    ?>


  • 慕前端4931694
    2017-07-07 15:54:49

    <table>

          <tr>

               <td></td>

          </tr>

    </table>


    慕村2831...

    我要的是代码大哥

    2017-07-09 21:38:07

    共 1 条回复 >

PHP进阶篇

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

181836 学习 · 2577 问题

查看课程

相似问题