


PHP implements two-dimensional array assignment and traversal functions
This article mainly introduces the simple implementation of two-dimensional array assignment and traversal functions in PHP, involving the simple assignment, traversal, operation, reading and other operation techniques of PHP arrays. Friends who need it can refer to it
The example in this article describes the simple implementation of two-dimensional array assignment and traversal functions in PHP. Share it with everyone for your reference, the details are as follows:
Example 1:
<?php $loptop1['lid'] = 1000; $loptop1['pic'] = 'img/1.png'; $loptop1['title'] = 'L1'; $loptop1['price'] = 5000; $loptop1['isOnSale'] = 1; $loptop1['shelfTime'] = 1234556; $loptop2['lid'] = 1001; $loptop2['pic'] = 'img/2.png'; $loptop2['title'] = 'L2'; $loptop2['price'] = 5000; $loptop2['isOnSale'] = 1; $loptop2['shelfTime'] = 123444456; $loptop3['lid'] = 1002; $loptop3['pic'] = 'img/3.png'; $loptop3['title'] = 'L3'; $loptop3['price'] = 5000; $loptop3['isOnSale'] = 1; $loptop3['shelfTime'] = 1243454556; $loptop4['lid'] = 1003; $loptop4['pic'] = 'img/4.png'; $loptop4['title'] = 'L4'; $loptop4['price'] = 5000; $loptop4['isOnSale'] = 1; $loptop4['shelfTime'] = 1234364556; $loptop[0] = $loptop1; $loptop[1] = $loptop2; $loptop[2] = $loptop3; $loptop[3] = $loptop4; for($i=0;$i<count($loptop);$i++){ //echo "编号:$loptop[$i][lid]"; //错误 //echo "编号:" . $loptop[$i]['lid']; //正确,但不推荐 $tmp = $loptop[$i]; echo "编号:$tmp[lid]<br/>"; echo "图片:$tmp[pic]<br/>"; echo "标题:$tmp[title]<br/>"; echo "价格:$tmp[price]<br/>"; echo "是否特价:$tmp[isOnSale]<br/>"; echo "上架时间:" . date("Y-m-d H:i:s",$tmp['shelfTime']) . "<br/>"; } ?>
Running results:
编号:1000 图片:img/1.png 标题:L1 价格:5000 是否特价:1 上架时间:1970-01-15 06:55:56 编号:1001 图片:img/2.png 标题:L2 价格:5000 是否特价:1 上架时间:1973-11-29 18:07:36 编号:1002 图片:img/3.png 标题:L3 价格:5000 是否特价:1 上架时间:2009-05-27 20:02:36 编号:1003 图片:img/4.png 标题:L4 价格:5000 是否特价:1 上架时间:2009-02-11 15:02:36
Example 2:
<?php $stu1['sid'] = 1000; $stu1['userName'] = "abc1"; $stu1['passWord'] = "123456"; $stu1['email'] = "2109882885@qq.com"; $stu1['tel'] = "15700769164"; $stu1['headScu'] = "stu1.png"; $stu1['sex'] = "M"; $stu1['regTime'] = 1111223435; $stu1['isOnline'] = 1; $stu2['sid'] = 1001; $stu2['userName'] = "abc2"; $stu2['passWord'] = "123456"; $stu2['email'] = "2109882886@qq.com"; $stu2['tel'] = "15700769165"; $stu2['headScu'] = "stu2.png"; $stu2['sex'] = "M"; $stu2['regTime'] = 122435344; $stu2['isOnline'] = 1; $stu3['sid'] = 1002; $stu3['userName'] = "abc3"; $stu3['passWord'] = "123456"; $stu3['email'] = "2109882887@qq.com"; $stu3['tel'] = "15700769166"; $stu3['headScu'] = "stu3.png"; $stu3['sex'] = "M"; $stu3['regTime'] = 3463464567; $stu3['isOnline'] = 0; $stu4['sid'] = 1003; $stu4['userName'] = "abc4"; $stu4['passWord'] = "123456"; $stu4['email'] = "2109882888@qq.com"; $stu4['tel'] = "15700769167"; $stu4['headScu'] = "stu4.png"; $stu4['sex'] = "F"; $stu4['regTime'] = 235234534; $stu4['isOnline'] = 1; $stu = [$stu1,$stu2,$stu3,$stu4]; for($i=0;$i<count($stu);$i++){ $tmp = $stu[$i]; echo "编号:$tmp[sid]<br/>"; echo "用户名:$tmp[userName]<br/>"; echo "密码:$tmp[passWord]<br/>"; echo "邮箱:$tmp[email]<br/>"; echo "手机:$tmp[tel]<br/>"; echo "头像:$tmp[headScu]<br/>"; if($tmp['sex'] == "M"){ echo "性别:男<br/>"; } if($tmp['sex'] == "F"){ echo "性别:女<br/>"; } echo "注册时间:" . date('Y-m-d H:i:s',$tmp['regTime']) . "<br/>"; if($tmp['isOnline'] == 1){ echo "状态:在线<br/>"; } if($tmp['isOnline'] == 0){ echo "状态:不在线<br/>"; } } ?>
Run results:
编号:1000 用户名:abc1 密码:123456 邮箱:2109882885@qq.com 手机:15700769164 头像:stu1.png 性别:男 注册时间:2005-03-19 09:10:35 状态:在线 编号:1001 用户名:abc2 密码:123456 邮箱:2109882886@qq.com 手机:15700769165 头像:stu2.png 性别:男 注册时间:1973-11-18 01:49:04 状态:在线 编号:1002 用户名:abc3 密码:123456 邮箱:2109882887@qq.com 手机:15700769166 头像:stu3.png 性别:男 注册时间:1943-08-27 03:01:11 状态:不在线 编号:1003 用户名:abc4 密码:123456 邮箱:2109882888@qq.com 手机:15700769167 头像:stu4.png 性别:女 注册时间:1977-06-15 14:55:34 状态:在线
Related recommendations:
Detailed explanation of two-dimensional array sorting function array_orderby use cases
PHP Methods and Cases for Implementing Matrix Transposition Operations of Two-Dimensional Arrays
PHP Two-Dimensional Arrays Deduplication or Statistics Based on a Certain Field
The above is the detailed content of PHP implements two-dimensional array assignment and traversal functions. For more information, please follow other related articles on the PHP Chinese website!

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



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.

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

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

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

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
