search
HomeBackend DevelopmentPHP TutorialThe most complete introduction to PHP arrays

This article mainly provides a general introduction to PHP arrays. The language is simple but very comprehensive. I hope that friends who are new to PHP will have a clearer understanding.

1. What is an array?
An array is a collection of data that organizes a series of data to form an operable whole. Each entity of an array contains two items: a key and a value.

2. Declaring data
There are two main ways to declare an array in PHP: one is to declare the array using the array() function, and the other is to directly assign values ​​to the array elements.
The array() function declares the array in the form of array([mixed...]). The syntax of the parameter mixed is key=>value
For example,

<?php
$array=array("1"=>"编","2"=>"程","3"=>"词","4"=>"典");
print_r($array);
echo "<br>";
echo $array[1]; //注意:下标默认是从0开始      
echo $array[2];       
echo $array[3];       
echo $array[4];       
?>

For example,

<?php
$array[1]="I";
$array[2]="love";
$array[3]="PHP";
print_r($array); //输出所创建数组的结构

?>

3. Array type
PHP supports two types of arrays: indexed array and associative array. The former Use numbers as keys, the latter uses strings as keys.

4. Output Array
Outputting array elements in PHP can be achieved through echo and print statements, but this can only output a certain element in the array; to output the array structure, you must Use the print_r() function, its syntax: print_r (mixed expression_r). If the parameter expression_r is an ordinary integer, character or real variable, the variable itself will be output. If the parameter is an array, it will be displayed in the order of a certain key value and element. Get all elements in the array.

5. Array construction
One-dimensional array:
When the elements of an array are variables, it is called a one-dimensional array.
Declare a one-bit array: Type specifier array name [constant expression];
Two-dimensional array:
When the element of an array is a one-bit array, it is called a two-dimensional array.
For example,

<?php
$str = array (
     "网络编程语言"=>array ("PHP","JSP","ASP"),
"体育项目"=>array ("m"=>"足球","n"=>"篮球"));
print_r ( $str) ;
?>

6. Traversing the array
Traversing all the elements in the array is a common operation, and queries or other functions can be completed during the traversal process. There are many ways to traverse an array in PHP. The two most commonly used methods are introduced below.
Use the foreach structure to traverse the array;
Use the list() function to traverse the array. The list() function can only be used for numerically indexed arrays, and the numerical index starts from 0.
Example: Comprehensive use of list() and each() to authenticate user login:

<?php
//输出用户登录信息
while(list($name,$value)=each($_POST)){
if($name!="submit"){
   echo "$name=$value<br>";
}
}

?>
7. Count the number of array elements
In PHP, use count The () function counts the number of elements in the array. The syntax is: int coun(mixed array[,int mode]), where the parameter array is a required parameter and mode is an optional parameter. If COUNT——RECURSIVE(or 1 ), this function will recursively pair arrays of arrays. For example,

<?php
$array = array("php" => array("PHP函数参考大全","PHP程序开发范例宝典","PHP数据库系统开发完全手册"),
               "asp" => array("ASP经验技巧宝典")
         ); //声明一个二维数组       
echo count($array,COUNT_RECURSIVE);//递归统计数组元素的个数,运行结果为6
?>

8. Array sorting
Use sort() and rsort() to perform ascending and descending order of the array respectively, such as,

<?php
$array=array(5,26,37,18,9,42,88,66);
$array1=sort($array);       
for($i=0;$i<count($array);$i++){  
   echo $array[$i]."  ";  
}
echo "<br>";
$array1=rsort($array);      
for($i=0;$i<count($array);$i++){     
echo $array[$i]."  ";
}
?>

Running results:
5 9 18 26 37 42 66 88
88 66 42 37 26 18 9 5
Use ksort() and asort() to sort the associative array
If used After sorting the related array, you need to keep the order of keywords and values ​​consistent. In this case, you need to use the ksort() and asort() functions

, such as,

<?php
$array=array(&#39;php&#39;=>1,&#39;jsp&#39;=>2,&#39;asp&#39;=>3);
ksort($array);
print_r($array);
echo "<br>";
asort($array);
print_r($array);
?>

Run result:
Array ( [asp] => 3 [jsp] => 2 [php] => 1 )
Array ( [php] => 1 [jsp] => 2 [asp] => 3)

The above eight aspects briefly introduce the definition, structure and methods of PHP arrays from the shallower to the deeper. I hope it will be helpful to everyone. Regarding the issue of arrays, the editor More corresponding tutorial articles will be compiled in the future.

Related recommendations:

Several methods of defining PHP arrays

Related explanations of PHP arrays

A summary of how to use PHP arrays

The above is the detailed content of The most complete introduction to PHP arrays. For more information, please follow other related articles on the PHP Chinese website!

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
Explain the concept of a PHP session in simple terms.Explain the concept of a PHP session in simple terms.Apr 26, 2025 am 12:09 AM

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

How do you loop through all the values stored in a PHP session?How do you loop through all the values stored in a PHP session?Apr 26, 2025 am 12:06 AM

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

Explain how to use sessions for user authentication.Explain how to use sessions for user authentication.Apr 26, 2025 am 12:04 AM

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.

Give an example of how to store a user's name in a PHP session.Give an example of how to store a user's name in a PHP session.Apr 26, 2025 am 12:03 AM

Tostoreauser'snameinaPHPsession,startthesessionwithsession_start(),thenassignthenameto$_SESSION['username'].1)Usesession_start()toinitializethesession.2)Assigntheuser'snameto$_SESSION['username'].Thisallowsyoutoaccessthenameacrossmultiplepages,enhanc

What are some common problems that can cause PHP sessions to fail?What are some common problems that can cause PHP sessions to fail?Apr 25, 2025 am 12:16 AM

Reasons for PHPSession failure include configuration errors, cookie issues, and session expiration. 1. Configuration error: Check and set the correct session.save_path. 2.Cookie problem: Make sure the cookie is set correctly. 3.Session expires: Adjust session.gc_maxlifetime value to extend session time.

How do you debug session-related issues in PHP?How do you debug session-related issues in PHP?Apr 25, 2025 am 12:12 AM

Methods to debug session problems in PHP include: 1. Check whether the session is started correctly; 2. Verify the delivery of the session ID; 3. Check the storage and reading of session data; 4. Check the server configuration. By outputting session ID and data, viewing session file content, etc., you can effectively diagnose and solve session-related problems.

What happens if session_start() is called multiple times?What happens if session_start() is called multiple times?Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

How do you configure the session lifetime in PHP?How do you configure the session lifetime in PHP?Apr 25, 2025 am 12:05 AM

Configuring the session lifecycle in PHP can be achieved by setting session.gc_maxlifetime and session.cookie_lifetime. 1) session.gc_maxlifetime controls the survival time of server-side session data, 2) session.cookie_lifetime controls the life cycle of client cookies. When set to 0, the cookie expires when the browser is closed.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.