Skip to content

Kirby 4.1.2

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
contain after filling it up.
$fill mixed 'placeholder' The element, which should be used to
fill the array. If it's a callable, it
will be called with the current index

Return type

array

Parent class

Kirby\Toolkit\A