您的位置:首页 > 编程语言 > PHP开发

php和html混写,遍历出二维关联数组

2015-11-15 13:31 519 查看
<?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>



本文出自 “IT5808” 博客,请务必保留此出处http://it5808.blog.51cto.com/10842703/1712878
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: