A::fill()
Fills an array up with additional elements to certain amount.
A::fill(array $array, int $limit, mixed $fill = 'placeholder'): array
Parameters
Name | Type | Default | Description |
---|---|---|---|
$array |
array |
– | The source array |
$limit |
int |
– | The number of elements the array should |
$fill |
mixed |
'placeholder' |
The element, which should be used to |
Return type
array