Blogger Information
Blog 38
fans 0
comment 2
visits 24184
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
For(), while(),foreach(),实现数组的遍历—4月17日
→忆指凡尘&的博客
Original
613 people have browsed it

大家好

       以下是我对For(), while(),foreach(),实现数组的遍历的练习,如有错误望大家指出

实例

<?php
//创建一个索引数组
$a = ['中国', '英国', '法国', '韩国', '德国', '美国'];
//创建一个关联数组
$b = ['a'=>'昨天', 'b'=>'玩牌', 'c'=>'输了', 'd'=>1000, 'e'=>'元'];

//利用for循环进行索引数组的遍历
for ($i=0; $i <count($a); $i++) { 
	echo key($a),'=>',current($a),'<br>';
	next($a);
}
echo '<hr color="red">';
//利用for循环进行关联数组的遍历
for ($i=0; $i <count($b); $i++) { 
	echo '[',key($b),']=>',current($b),'<br>';
	next($b);
}
echo '<hr color="red">';
//利用while循环进行索引数组的遍历
$i=0;
while ( $i <count($a)) {
	echo key($a),'=>',current($a),'<br>';
	next($a);
	$i++;
}
echo '<hr color="red">';
//利用while循环进行关联数组的遍历
$i=0;
while ( $i <count($b)) {
	echo '[',key($b),']=>',current($b),'<br>';
	next($b);
	$i++;
}
echo '<hr color="red">';
echo '选择您的等级:';
$levers = ['小白', '刚入门', '中级', '高级'];
echo '<select name="lever">';
foreach ($levers as $value) {
    echo '<option>'.$value.'</option>';
}
echo '</select>';

运行实例 »

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

以下是手抄array_spiice()的用法

微信图片_20180419182512.jpg

                                                                                         课程总结

1.array_splice的用法:

       (1)array_splice($c, 2)— 只保留$c数组前2个元素,要从索引为2位置开始删除

       (2)array_splice($c, 2,-1)— 长度为负数,则指从负数到起始点之间的元素(不包含-1这个这个元素)

       (3)array_splice($c, -2, 1, ['aaa', 'bbb'])—从-2这个元素开始往后删除一个元素,用后面的数组进行替换

2.For(), while(),foreach(),实现数组的遍历的用法

3.while循环的两种用法:

       (1)入口判断: while(condition){ #code }

       (2)出口判断: do { #code } while(condition)

                                      

Correction status:Uncorrected

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