search
HomeBackend DevelopmentPHP TutorialPHP array definition and traversal, PHP array functions and multi-dimensional arrays

The definition of PHP array and array traversal, the usage and examples of PHP array functions, PHP array value assignment, the loop output of PHP multi-dimensional array, etc. are provided for your study and reference.

1. PHP array definition and traversal 2. php array function

1. Array definition:

$arr=array(1,2,3);//Index array, all subscripts are numbers $arr=array("name"=>"user1","age"=>"30");//Associative array, the subscript contains letters //There are only two kinds of subscripts, either letters or numbers without double quotes 1,3,"age"=>4,5,100=>6,7,400=>8,9); echo "
";  
print_r ($arr);  
echo "
"; ?>

2. Array subscript: if it is a letter

$arr=array("name"=>1,3,"age"=>4,5,100=>6,7,400=>8,9); //Subscript printing: "name" 0 [name] => 1 [0] => 3 [age] => 4 [1] => 5 [100] => 6 [101] => 7 [400] => 8 [401] => 9

3. Array value: 1. Output the entire array print_r($arr) 2. Output a value in the array

$arr=array("name"=>1,3,"age"=>4,5,"100"=>6,7,"400"=>8,9); echo $arr['age']; echo "
"; echo $arr[100];

3.Array assignment: 1.$arr['age']=30; Array assignment can also define arrays: $arr[]=1; $arr[]=2;

4.Array traversal: 1.for loop

The first ".($i+1)."The individual's name is {$arr[$i]}"; } ?>

Loop plus judgment:

The first ".($i+1)."The individual's name is {$arr[$i]}"; }else{ echo "

th".($i+1)."The individual's name is {$arr[$i]}

"; } } ?>

2.foreach loop foreach performs array traversal:

"; print_r ($arr); echo ""; foreach($arr as $key=>$val){ $num++; if($num%2==1){ echo "

{$key}:{$val}

"; }else{ echo "

{$key}:{$val}

"; } } ?>

3.while....list ..each loop traversal

while(list($key,$val)=each($arr)){ echo $key.$val; } //It is recommended to use foreach to traverse the array

Multidimensional Arrays: 1. One-dimensional array $arr=array(1,2,3); $arr[0]; 2. Two-dimensional array $arr=array(1,2,array(4,5)); $arr[2][0]; 2. Two-dimensional array $arr=array(1,2,array(3,array(4,5))); $arr[2][1][0];

Two-dimensional array traversal:

"; print_r($arr); echo ""; echo "
"; foreach($arr as $val){ if(is_array($val)){ foreach($val as $val2){ echo $val2."
"; } } else{ echo $val."
"; } } ?>

Three-dimensional array value:

"; print_r($arr); echo ""; echo "
"; foreach($arr as $val){ if(is_array($val)){ foreach($val as $val2){ if(is_array($val2)){ foreach($val2 as $val3){ echo $val3."
"; } }else { echo $val2."
"; } } } else{ echo $val."
"; } } ?> //It is recommended to use one-dimensional array and two-dimensional array

A data table is actually a two-dimensional array, and each row of records in it is a one-dimensional array. Query database:

"; print_r($row1); echo ""; ?>

Super global array: superglobal array $_SERVER $_GET $_POST $_REQUEST $_FILES $_COOKIES $_SESSION $GLOBALS $_SERVER View server information

"; print_r($_SERVER); echo ""; ?>

Apache/2.2.8 (Win32) PHP/5.2.6 Server at localhost Port 80 [SERVER_SOFTWARE] => Apache/2.2.8 (Win32) PHP/5.2.6 [SERVER_NAME] => localhost//server domain name [SERVER_ADDR] => 127.0.0.1//Server ip [SERVER_PORT] => 80//Port number [REMOTE_ADDR] => 127.0.0.1 //Client access ip [DOCUMENT_ROOT] => E:/AppServ/www [SERVER_ADMIN] => goxuexi@126.com [SCRIPT_FILENAME] => E:/AppServ/www/index.php //The absolute path of the script file name [REMOTE_PORT] => 49881 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => GET [QUERY_STRING] => //Request string [REQUEST_URI] => ///Request url address [SCRIPT_NAME] => /index.php//Script name (relative to website root directory) [PHP_SELF] => /index.php [REQUEST_TIME] => 1407568551//Access time [argv] => Array ( ) [argc] => 0 ) $_GET gets the data submitted using get http://localhost/index.php?id=10&name=user1 Communication between two pages: 1. Form value passing The first: get method The second way: post method 2.a tag passing value You can only use the get method The a tag recommends using the get method to submit data. It is recommended to use post method to submit data in forms. magic_quotes_gpc = on; means that when the get request is enabled, the ' in the get data will be preceded by

get instance: index.php

接收信息 junjun2
junzai3
junjun4
junjun5

rev.php

接收信息

欢迎:


姓名:

年龄:

post实例 $_POST:获取表单post过来的数据

index.php

接收信息

提交用户信息

姓名:
年龄:

rev.php

接收信息

欢迎:


姓名:

年龄:

$_REQUEST 获取a或者表单get或post过来的数据. $_COOKIES 同一个页面在多个页面获取 $_SESSION 同一个变量在多个页面获取到 $_FILES 获取表单中的文件,并生成一个数组. $GLOBALS $GLOBALS[_SERVER] $GLOBALS[_GET] $GLOBALS[_POST] $GLOBALS[_FILES] $GLOBALS[_REQUEST] $GLOBALS[_COOKIES] $GLOBALS[username]//包含页面内的全局变量,并且通过$GLOBALS[username]="user2"改变$username的值.

例子,使用$GLOBALS改变全局变量的值.

"; print_r($GLOBALS); echo ""; ?>


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Global View Data Management in LaravelGlobal View Data Management in LaravelMar 06, 2025 am 02:42 AM

Laravel's View::share method offers a streamlined approach to making data accessible across all your application's views. This is particularly useful for managing global settings, user preferences, or recurring UI components. In Laravel development,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software