定义和用法

list() 函数用于在一次操作中给一组变量赋值。(看不懂。。。。。)

简单理解,就是把数组里面的值,给list里面定义的变量
list($a,$a) = [1,2,3]; 那么$a值就是1,$b的值就是2

注释:该函数只用于数字索引的数组。


语法

list(var1,var2...)

参数描述
var1必需。第一个需要赋值的变量。
var2,...可选。更多需要赋值的变量。

技术细节

返回值:返回被赋值的数组。
PHP 版本:4+

demo

$my_array = array("Dog",'sr',"Horse",['test1','test2','test3','test4','test6']);

list($a, , $c,$d) = $my_array;
echo "Here I only use the $a and $c variables.";
show($d);
##输出
Here I only use the Dog and Horse variables.
Array
(
    [0] => test1
    [1] => test2
    [2] => test3
    [3] => test4
    [4] => test6
)