Blogger Information
Blog 16
fans 0
comment 1
visits 18653
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
函数 参数设置 数组与字符串,变量之间的转换 数组元素的回调处理 2018-08-23
安丰的博客
Original
777 people have browsed it

实例 使用FOR循环遍历数组

$user = ['id'=> 5,'name'=>'zhu','gender'=>'male','age'=>'20'];
for ($a=0;$a < count($user);$a++){
echo key($user),'---',current($user),'<br>';
next($user);
}

实例

$user = ['id'=> 5,'name'=>'zhu','gender'=>'male','age'=>'20'];
echo'<per>', print_r($user,true);
// in_array()  判断数组中是否存在某一个值
echo in_array('zhu',$user)? '存在':'不存在';

//array_key_exists()  判断某个键名 是否存在在数组中
echo array_key_exists('male',$user)? '存在':'不存在';

//array_values()  已索引方式返回数组的值 将获得的值新建成一个新的数组
echo array_values($user);

//array_keys()   已索引方式返回数组的 键  将获得的值新建成一个新的数组
echo array_keys($user);

//array_search() 已字符串的方式返回制定值的 键
 echo array_search('zhu',$user);

// array_flip() 键值对调
  print_r (array_flip($user));

//数组内部的指针操作
//count()计算数组当前元素 个数
echo count($user),'<hr>';
//key()返回当前元素的键
echo key($user),'<hr>';
//current() 返回当前元素的 值
echo current($user),'<hr>';
//next 指针下移一个
next($user);
//reset  指针复位
reset($user);
//end 指针到数组尾部 最后一个
end($user);
//list() 将索引数组中的值,赋值给一组变量
list($key,$value) = each($user);{
    echo $key,'==>',$value,'<br>';
}

运行实例 »

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

运行实例 »

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


Correction status:qualified

Teacher's comments:PHP的标签呢?下次的作业记得加点自己的总结上去哦!
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!