您好,登錄后才能下訂單哦!
<?php //下面是二維關聯數組 $arr_3 = array(array("id"=>2,"name"=>"lucy","age"=>26), array("id"=>3,"name"=>"lili","age"=>27), array("id"=>4,"name"=>"lisi","age"=>28), ); ?> <!DOCTYPE html> <html> <head> <title></title> </head> <body> <table border="1px black solid" width="20%" cellpadding="0" cellspacing="0" align="center"> <tr align="center" bgcolor="green"> <th>編號</th> <th>姓名</th> <th>年齡</th> </tr> <!--二維關聯數組的2次遍歷--> <?php foreach ($arr_3 as $key=>$row) { ?> <tr align="center"> <?php if(is_array($row)){ foreach ($row as $col) { echo "<td align='center'>".$col."</td>"; } }else{ echo "<td >".$key.':'.$row."</td>"; } ?> </tr> <?php } ?> </table> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。