Function of PHP list function
Array () is similar, list () is actually a language structure, not a function.
The list () function assigns a set of variables to an element in an array
List (VAR,VAR1) has a parameter that is required
Let's take a look at an example
$array = Array (' AA ', ' BA ', ' Ca ', ' da ', ' ea ', ' FA ');
List ($a, $b, $c) = $array;
echo $a, $b, $c; Output A,b,c What would be the result?
The result: aabacaaa
$a = list ($a, $b, $c) = $array;
Print_r ($a);
/* Output result array
(
[0] => AA
[1] => BA
[2] => CA
[3] => da
[4] => ea
[5] => FA
)
*/
Let's look at an example.
$b =list ($a, $c) = $array;
echo $a, ' and ', $c;
The result is AA and CA
/*
The conclusion is that the list must be used in conjunction with the array, but the array list does not have to be exactly equal, and the function of the list is to assign the data to the variable.
*/