返回值 返回值
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
//将函数返回的值赋值给了list($one, $two, $three)? list和后面括号内的是什么意思?
function numbers() {
return array(1, 2, 3);
}
list ($one, $two, $three) = numbers();
//将函数返回的值赋值给了list($one, $two, $three)? list和后面括号内的是什么意思?
2016-03-09
举报