Blogger Information
Blog 31
fans 3
comment 1
visits 34405
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
for(), while(),foreach()方法实现索引数组、关联数组的遍历以及array_splice的用法
php学习笔记
Original
1375 people have browsed it

for(), while(),foreach()方法都可以实现数组的遍历,下面以实例来演示一下索引数组与关联数组的遍历:

实例

<?php
//索引数组遍历
$arr1 = ['北京','上海','广州','深圳'];
for ($i=0; $i < count($arr1) ; $i++) { 
	echo '['.key($arr1).']=>'.current($arr1).'<br>';
	next($arr1);
}
reset($arr1);
echo '<hr>';
$i=0;
while ($i < count($arr1)) {
	echo '['.key($arr1).']=>'.current($arr1).'<br>';
	next($arr1);
	$i++;
}
reset($arr1);
echo '<hr>';
foreach ($arr1 as $key => $value) {
	echo '['.$key.']=>'.$value.'<br>';
}
echo '<hr>';
//关联数组遍历
$arr2 = ['id'=>28186,'name'=>'zhibo','course'=>'php','grade'=>90];
for ($i=0; $i < count($arr2); $i++) { 
	echo '['.key($arr2).']=>'.current($arr2).'<br>';
	next($arr2);
}
reset($arr2);
echo '<hr>';
$i = 0;
while ($i < count($arr2)) {
	echo '['.key($arr2).']=>'.current($arr2).'<br>';
	next($arr2);
	$i++;
}
reset($arr2);
echo '<hr>';
foreach ($arr2 as $key => $value) {
	echo '['.$key.']=>'.$value.'<br>';
}

运行实例 »

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

运行结果:

运行结果.png

array_splice()方法可以从数组中增加、删除和替换指定的元素,下面以实例来演示一下:

实例

<?php
echo '<pre>';
//array_splice增加元素
$city = ['北京','上海','广州','深圳','重庆','天津'];
print_r(array_splice($city,2,0,['合肥','南京']));
print_r($city);
//array_splice删除元素
$city = ['北京','上海','广州','深圳','重庆','天津'];
print_r(array_splice($city,2,1));
print_r($city);
//array_splice替换元素
$city = ['北京','上海','广州','深圳','重庆','天津'];
print_r(array_splice($city,2,1,['合肥','南京']));
print_r($city);

运行实例 »

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

运行结果:

运行结果1.png

手抄代码:

手抄.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