Blogger Information
Blog 42
fans 0
comment 1
visits 26055
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
常用数组操作-4月17日作业
日薪月e的博客
Original
585 people have browsed it

分别用:

一、For(), while(),foreach(),实现索引数组,关联数组的遍历,最好能举一些实际案例,结合html代码来实现。

代码如下:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>常用数组操作-4月17日作业</title>
</head>
<body>
	<!-- For(), while(),foreach(),实现索引数组,关联数组的遍历,最好能举一些实际案例,结合html代码来实现。 -->
</body>
<?php
	echo '<pre>';
	$user = ['id'=>1001, 'name'=>'小明', 'sex'=>'boy', 'age'=>13];
	print_r($user);
	echo '<hr color="red">';

	echo '<hr>';

	//用for()实现数组遍历
	for($i=0; $i<count($user); $i++){
		echo '[',key($user),'] => ',current($user),'<br>';
		next($user);
	}

	echo '<hr color="green">';

	//用while()实现数组遍历
	reset($user);
	$i = 0;
	while($i<count($user)){
		echo '[',key($user),'] => ',current($user),'<br>';
		next($user);
		$i++;
	}

	echo '<hr color="blue"';

	//用foreach()来实现数组遍历
	echo '<h3>用户信息</h3>';
	echo '<ul>';
	foreach($user as $key => $value){
		echo '<li>'.$key.':',$value.'</li>';
	}
	echo '</ul>';

	echo '<hr color="#888">';
	//用foreach()遍历后生成表格
	echo '<table border="1" cellpadding="3" cellspacing="0" width="300">';
	echo '<caption>用户信息表</caption>';
	echo '<tr bgcolor="lightskyblue"><th>ID</th><th>姓名</th><th>性别</th><th>年龄</th></tr>';
	echo '<tr>';
	foreach ($user as $value) {
    	echo '<td align="center">'.$value.'</td>';
	}
	echo '</tr>';
	echo '</table>';

?>
</html>

运行实例 »

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

二、手抄: array_splice()的函数的用法,必须仔细研究并熟练掌握,试着用这个函数实现数组的CURD(增删改查操作)~~,尽可能自己动手,不会就百度,查官网手册,养成独立分析与解决问题的能力分别用:

01.jpg

02.jpg

小结:本次都是基础知识,没有其他技巧,就是勤学苦练,多记多练习!!!


Correction status:qualified

Teacher's comments:
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