array_fillFill an array with values
&reftitle.description;
arrayarray_fillintstart_indexintcountmixedvalue
Fills an array with
count entries of the value of the
value parameter, keys starting at the
start_index parameter.
&reftitle.parameters;
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
(see example).
count
Number of elements to insert.
Must be greater than or equal to zero.
value
Value to use for filling
&reftitle.returnvalues;
Returns the filled array
&reftitle.errors;
Throws a E_WARNING if count is
less than zero.
&reftitle.examples;
array_fill example
]]>
&example.outputs;
banana
[6] => banana
[7] => banana
[8] => banana
[9] => banana
[10] => banana
)
Array
(
[-2] => pear
[0] => pear
[1] => pear
[2] => pear
)
]]>
&reftitle.notes;
See also the Arrays
section of manual for a detailed explanation of negative keys.
&reftitle.seealso;
array_fill_keysstr_repeatrange