php学习笔记 数组遍历实现代码
复制代码 代码如下:
/* 数组的遍历
*
* 1.使用for语句循环遍历数组
* 1.其他语言(只有这一种方式)
* 2.PHP中这种方式不是首选的方式
* 3.数组必须是索引数组,而且下标必须是连续的。
* (索引数组下标可以不连续,数组还有关联数组,这两种不能遍历)
*
* 2.使用foreach语句循环遍历数组
* foreacho(数组变量 as 变量值){
* //循环体
* }
* 1.循环次数由数组的元素个数决定
* 2.每一次循环都会将数组中的元素分别赋值给后面变量
*
* foreach(数组变量 as 下标变量=> 值变量){
* }
*
*
* 3.while() list() each() 组合循环遍历数组
*
* each()函数:
* 1.需要一个数组作为参数
* 2.返回来的也是一个数组
* 3.返回来的数组是0,1,key,value四个下标(固定的)
* 0和key下标是当前参数数组元素的键
* 1和value下标是当前参数数组元素的值
* 4.默认当前元素就是第一个元素
* 5.每执行一次后就会将当前元素向后移动
* 6.如果到最后的元素再执行这个函数,则返回false
* list()函数:
* 1. list()=array();需要将一个数组赋值给这个函数
* 2.数组中的元素个数,要和list()函数中的参数个数相同
* 3.数组中的每个元素值会赋值list()函数中的每个参数,list()将每个参数转为变量
* 4.list()只能接受索引数组
* 5.按索引的下标顺序来给参数赋值
*
*
*
*/
//for语句遍历数组
$user=array(1,"zhangsan",40,"nan");
for($i=0;$i{
echo"\$user[{$i}]=".$user[$i]."
";
}
//使用foreach
$user=array(1,"zhangsan",40,"nan");
foreach($user as $val)//$val是自定义变量
{
echo $val."
";//输出与下标无关
}
foreach($user as $key=>$val)//$val $key 都是自定义变量
{
echo $key."=====>".$val."
";
}
//foreach遍历多维数组
$info=array(
"user"=>array(
//$user[0]
array(1, "zansan", 10, "nan"),
//$user[1][1]
array(2, "lisi", 20, "nv"), //$user[1]
//$user[2]
array(3, "wangwu", 30, "nan")
),
"score"=>array(
array(1, 100, 90, 80),
array(2, 99, 88, 11),
array(3, 10, 50, 88)
),
"connect"=>array(
array(1, '110', 'aaa@bbb.com'),
array(2, '120', 'bbb@ccc.com'),
array(3, '119', 'ccc@ddd.com')
)
);
foreach($info as $tableName=>$table)
{
echo '
'.$col.' | ';
}
//each()的使用
$user=array("id"=>1,"name"=>"zhangsan","age"=>10,"sex"=>"nan");
$a=each($user);//Array ( [1] => 1 [value] => 1 [0] => id [key] => id ) 默认是第一个元素的值
print_r($a);
$b=each($user);
print_r($b);//Array ( [1] => zhangsan [value] => zhangsan [0] => name [key] => name ) 每执行一次,向后遍历一个
$c=each($user);
print_r($c);//Array ( [1] => 10 [value] => 10 [0] => age [key] => age )
$d=each($user);
print_r($d);//Array ( [1] => nan [value] => nan [0] => sex [key] => sex )
$e=each($user);
var_dump($e);//bool(false) 当没有元素时,返回的值
//each()配合while遍历
$user=array("id"=>1,"name"=>"zhangsan","age"=>10,"sex"=>"nan");
while($arr=each($user))
{
//echo $arr[0]."====>".$arr[1]."
";//通过0,1 来显示 键(下标) 和 值
echo $arr["key"]."===>".$arr["value"]."
";//通过key,value 来显示 键 值
}
//list()函数的使用
list($name,$age,$sex)=array("zhangsan",10,"nnnnn");
echo $name."
";
echo $age."
";
echo $sex."
";
//另一种使用方法
list(,,$sex)=array("zhangsan",10,"nnnnn");
echo $sex."
";//只把性别转换为变量
//ip判断
$ip="192.168.1.128";
list(,,,$d)=explode(".",$ip);//explode表示用 . 来分隔,并返回一个数组
echo $d;//取出128
//list()只能接收索引数组的例子
$user=array("id"=>1,"name"=>"zhangsan","age"=>10,"sex"=>"nan");
list($key,$value)=each($user);//Array( [1]=>1 [0]=>id) 按照索引下标的顺序给list中的参数赋值,所以先是 0键 然后是 1值
echo $key."--->".$value;
//while list() each() 组合使用
$user=array("id"=>1,"name"=>"zhangsan","age"=>10,"sex"=>"nan");
while(list($key,$value)=each($user))
{
echo $key."--->".$value."
";
}
//多次循环只显示一次的解决方法
//使用数组的内部指针控制函数
//next(数组);数组指针移动到下一个
//prev(数组);数组指针移动到上一个
//reset(数组);数组指针移动到第一个(复位)
//end(数组);数组指针移动到最后一个
//current(数组);获取当前元素的值,当前元素时指数组指针指向的元素。
//key(数组);获取当前元素的键值(下标)
$user=array("id"=>1,"name"=>"zhangsan","age"=>10,"sex"=>"nan");
while(list($key,$value)=each($user))
{
echo $key."--->".$value."
";
}
//在这里将数组指针移动到第一个以下循环就能输出
//reset($user)
while(list($key,$value)=each($user))//因为each()到最后一个返回false,所以循环直接跳出
{
echo $key."--->".$value."
";
}
while(list($key,$value)=each($user))//因为each()到最后一个返回false,所以循环直接跳出
{
echo $key."--->".$value."
";
}
echo current($user)."=====>".key($user);
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

In this chapter, we are going to learn the following topics related to routing ?

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
