Home  >  Article  >  Backend Development  >  How to convert array elements into variables in php

How to convert array elements into variables in php

王林
王林Original
2020-09-01 14:15:214365browse

In PHP, you can use the list() statement to convert array elements into variables, the syntax is "list(var1,var2...)". The list() statement is used to assign values ​​to a set of variables in one operation, and can only be used for numerically indexed arrays, for example: [list($a, $b, $c)=$array].

How to convert array elements into variables in php

#list() is used to assign values ​​to a set of variables in one operation. This function only works with numerically indexed arrays, and assumes that numerical indexing starts at 0.

Note: list() is actually a language structure, not a function.

(Recommended tutorial: php video 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.

(Related recommendations:

php training)

Code example:

The above is the detailed content of How to convert array elements into variables in php. 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