Blogger Information
Blog 27
fans 1
comment 1
visits 21852
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML和PHP混编作业1 -php五期线上班
哥特的博客
Original
501 people have browsed it

作业总结: 学习二维数组的创建,一维数组有一层array,array下面有几层array()就是几维数组。数组的下标可以默认,但是像二维数组尽量表示出来方便循环调用。 在循环里先创建一个空值然后用 连等于连接循环调用,如果混编里用了双引号,这个双引号可以直接解析内部的php代码,但是需要添加一个大括号,数组循环完毕直接echo 输出。




实例

<?php
$title = '员工管理系统';
$arr = array(
		array(
				'id' => 1,
				'name' => '韦小宝',
				'age'  => 20,
				'address' => '扬州'
			),
		array(
				'id' => 2,
				'name' => '鳌拜',
				'age'  => 60,
				'address' => '北京'
			),
		array(
				'id' => 3,
				'name' => '吴三桂',
				'age'  => 70,
				'address' => '云南'
			),
		array(
				'id' => 4,
				'name' => '耿精忠',
				'age'  => 61,
				'address' => '广西'
			),
	);
?>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title><?php echo $title ?></title>
	<style type="text/css">
		*{
			padding: 0;
			margin: 0;

		}
		table,td,th{
		

			border: 1px solid #999;
		}
		caption{
			border: 1px solid #999;
		}
		table{
			margin:50px auto;
			width: 800px;
			text-align: center; 
			height: 32px;
			line-height: 32px; 

            border-collapse: collapse;
		}
		table + p {
            text-align: center;
        }
	</style>
</head>
<body>
	<table>
		 
			<caption><?php echo $title ?></caption>
		 
		<tr>
			<th>ID</th>
			<th>姓名</th>
			<th>年龄</th>
			<th>籍贯</th>
		</tr>

		<?php 
			// 空数组一定要在外层,否则循环后直接变空,只显示最后一条数据。
			$ret = '';
			foreach ($arr as  $value) {
				
				$ret .= '<tr><td>'.$value['id'].'</td>';
				$ret .= '<td>'.$value['name'].'</td>';
				$ret .= "<td>{$value['age']}</td>";
				$ret .= "<td>{$value['address']}</td></tr>";

			}
			// 直接echo输出,return是弹出内容,但是外层没有接收不显示
			echo $ret;

		?>
		
	</table>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post