From http://www.w3schools.com (Copyright Refsnes Data)
The array_fill() function returns an array filled with the values you describe.
array_fill(start,number,value) |
Parameter | Description |
---|---|
start | Required. A numeric value, specifies the starting index of the key |
number | Required. A numeric value, specifies the number of entries |
value | Required. Specifies the value to be inserted |
<?php $a=array_fill(2,3,"Dog"); print_r($a); ?> |
The output of the code above will be:
Array ( [2] => Dog [3] => Dog [4] => Dog ) |
From http://www.w3schools.com (Copyright Refsnes Data)