Sunday 25 August 2013

PHP Function array_fill()

Syntax

array array_fill ( int $start_index, int $num, mixed $value );

Definition and Usage

Fills an array with num entries of the value of the value parameter, keys starting at thestart_index parameter.

Paramters

ParameterDescription
start_indexThe first index of the returned array
numNumber of elements to insert
valueValues to use filling

Return Values

Returns the filled array

Example

Try out following example:
<?php
$a = array_fill(5, 6, 'apple');
print_r($a)
?> 
This will produce following result:
Array
(
    [5]  => apple
    [6]  => apple
    [7]  => apple
    [8]  => apple
    [9]  => apple
    [10] => apple
)

No comments:

Post a Comment