search
HomeBackend DevelopmentPHP ProblemWhat does php list function mean?

What does php list function mean?

Jul 07, 2021 pm 06:17 PM
listphp

In PHP, list means "list". This function can assign the values ​​​​in an array to a group of variables, and can assign values ​​to a group (multiple) variables in a single operation; Syntax "list($var1 [, $val2, ...]);". list() is actually a language construct, not a function.

What does php list function mean?

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

list() in PHP can put an array into The values ​​are assigned to a set of variables respectively. Like array(), it is not a real function, but a language structure. list() can assign values ​​to a set of (multiple) variables in a single operation.

list() The syntax result is as follows:

list($var1 [, $val2, ...]);

where $val1 and $val2 are a set of variables to be assigned, and multiple variables are separated by commas.

Note: list() can only be used to index arrays, and the index must start from 0. In PHP5, list() starts assigning values ​​from the rightmost parameter; in PHP7, list() starts assigning values ​​from the leftmost parameter.

The following is a simple example to demonstrate the use of the following list(). The code is as follows:

<?php
header("Content-type:text/html;charset=utf-8");
$array = array("PHP中文网","PHP 教程","https://www.php.cn/");
list($a, $b, $c) = $array;
echo &#39;$a = &#39;.$a.&#39;<br>$b = &#39;.$b.&#39;<br>$c = &#39;.$c;
?>

The running results are as follows:

$a = PHP中文网
$b = PHP 教程
$c = https://www.php.cn/

As can be seen from the running results, The variables in list() are assigned in the order of the index of the array, and the index starts from 0. What happens if the index of the array does not start from 0? Let's look at the following code:

<?php
header("Content-type:text/html;charset=utf-8");
$array = array(1=>"PHP中文网",2=>"PHP 教程",3=>"https://www.php.cn/");
list($a, $b, $c) = $array;
echo &#39;$a = &#39;.$a.&#39;<br>$b = &#39;.$b.&#39;<br>$c = &#39;.$c;
?>

The running results are as follows:

What does php list function mean?

It can be seen that $a has not been assigned a value. This is because there is no value with index 0 in the array. If list() is used When not all the values ​​in the array are needed, we can omit some variables in list(), as follows:

<?php
header("Content-type:text/html;charset=utf-8");
$array = array("PHP中文网", "PHP 教程", "https://www.php.cn/");
list($a, , $c) = $array;
echo &#39;$a = &#39;.$a.&#39;<br>$b = &#39;.$b.&#39;<br>$c = &#39;.$c;
?>

The running results are as follows:

What does php list function mean?

If we want to assign the value of a multi-dimensional array to a set of variables, we can also nest list(). The following uses a two-dimensional array as an example to demonstrate the following. The code is as follows:

<?php
header("Content-type:text/html;charset=utf-8");
$array = array(
    array(&#39;PHP中文网&#39;, &#39;PHP 教程&#39;),
    array(&#39;PHP 数组&#39;, &#39;https://www.php.cn/&#39;)
);
list(list($a, $b), list($c, $d)) = $array;
echo &#39;$a = &#39;.$a.&#39;<br>$b = &#39;.$b.&#39;<br>$c = &#39;.$c.&#39;<br>$d = &#39;.$d;
?>

The running results are as follows:

$a = PHP中文网
$b = PHP 教程
$c = PHP 数组
$d = https://www.php.cn/

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What does php list function mean?. 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

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 Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.