<?php
function numbers() {
return array(1, 2, 3);
}
$arr= numbers();
echo $arr[2].' ';
//==============
list ($one, $two, $three) = numbers();
echo $one;
//在这里调用函数取得返回值
mark
<?php
function numbers() {
return array(1, 2, 3);
}
$arr= numbers();
echo $arr[2].' ';
//==============
list ($one, $two, $three) = numbers();
echo $one;
//在这里调用函数取得返回值
mark
2014-10-28
举报