Home  >  Article  >  Backend Development  >  How to use php list function

How to use php list function

藏色散人
藏色散人Original
2019-11-12 10:48:022488browse

How to use php list function

How to use the php list function?

Example

Assign the values ​​in the array to some variables:

Output:

I have several animals, a Dog, a Cat and a Horse.

Definition and Usage

list() function is used to assign values ​​to a set of variables in one operation.

Note: This function is only used for numerically indexed arrays, and it is assumed that the numerical index starts from 0.

Recommended: "PHP Tutorial"

Syntax

list(var1,var2...)

Parameters

var1 required. The first variable to be assigned a value.

var2,... Optional. More variables need to be assigned values.

Description

list() function assigns values ​​to a set of variables using elements in the array.

Note that, similar to array(), list() is actually a language construct, not a function.

Return value: Returns the assigned array.

Example 1

Using the first and third variables:

Output:


The above is the detailed content of How to use php list function. 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