(PHP 4 >= 4.2.0, PHP 5)
array_fill — 用给定的值填充数组
array_fill() 用 value
参数的值将一个数组填充 num
个条目,键名由
start_index
参数指定的开始。
start_index
The first index of the returned array.
If start_index
is negative,
the first index of the returned array will be
start_index
and the following
indices will start from zero
(参见 例子)。
num
插入元素的数量。 必须大于 0。
value
Value to use for filling
Returns the filled array
如果 num
少于一个,将会抛出 E_WARNING
。
Example #1 array_fill() 例子
<?php
$a = array_fill(5, 6, 'banana');
$b = array_fill(-2, 4, 'pear');
print_r($a);
print_r($b);
?>
以上例程会输出:
Array ( [5] => banana [6] => banana [7] => banana [8] => banana [9] => banana [10] => banana ) Array ( [-2] => pear [0] => pear [1] => pear [2] => pear )
参见手册上 数组 一节里关于负数的键的详细解释。