输出的结果是: 4
<?php
function numbers();
{
return array (2,3,4,5);
}
list ($two,$three,$four,$five)=numbers();
echo ‘<pre>‘;
print_r(numbers());
输出的结果是:
Array
(
[0] => 2
[1] => 3
[2] => 4
[3] => 5
)
函数参数的作用:
2.有参数,可以根据用户传递过来的数据决定函数内的程序该如何执行,函数的参数列表是给用户调用函数的时候,提供的接口
function createTable(int $rows, int $cols)
{
$table = “<table border='1' cellspacing='0'>“;
for ($i=0; $i < $rows ; $i++) {
$table .= "<tr>";
for ($j=0; $j < $cols; $j++) {
$table .= "<td>parameter</td>";
}
$table .= "</tr>";
}
$table.=”</table>“;
return $table;
}
echo createTable(9,6);