array_fill()
array_fill - Fill an array with valuesSyntax
array array_fill (int $start_index, int $num, mixed $value)Arguments
- start_index - The first index of the returned array. Supports non-negative indexes only.
- num - Number of elements to insert
- value - Value to use for filling
