Home >php教程 >php手册 >PHP中多维数组的foreach遍历示例

PHP中多维数组的foreach遍历示例

WBOY
WBOYOriginal
2016-06-06 20:21:471673browse

这篇文章主要介绍了PHP中多维数组的foreach遍历,需要的朋友可以参考下

复制代码 代码如下:


//声明一个三维数组
$info=array(
"user"=>array(
array(1,"zhangsan",20,"nan"),
array(2,"lisi",20,"nan"),
array(3,"wangwu",25,"nv")
),
"score"=>array(
array(1,100,98,95,96),
array(2,56,98,87,84),
array(3,68,75,84,79)
),
"connect"=>array(
array(1,'2468246',"salkh@bbs.com"),
array(2,'343681643',"aikdki@sina.com"),
array(3,'3618468',"42816@qq.com")
)
);
//循环遍历,输出一个表格
foreach($info as $tableName=>$table){
echo "

";
echo "";//以每个数组的键值作为表名
foreach($table as $row){
echo "";
foreach($row as $col){
echo "";
}
echo "";
}
echo "

".$tableName."

".$col."
";
}
?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn