Home > Backend Development > PHP Tutorial > PHP中多维数组的foreach遍历示例_php技巧

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

WBOY
Release: 2016-05-17 08:42:26
Original
979 people have browsed it
复制代码 代码如下:

//声明一个三维数组
$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."
";
}
?>
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template