PHP - array_fill() 函数



语法

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

定义和用法

它使用value参数的值填充一个包含num个条目的数组,键从start_index参数开始。

参数

序号 参数和描述
1

start_index

返回数组的第一个索引

2

num

它包含要插入的元素数量

3

value

它包含用于填充的值

返回值

它返回填充后的数组

示例

尝试以下示例 -

<?php
   $input = array_fill(5, 6, 'apple');
   print_r($input);
?> 

这将产生以下结果 -

Array (
   [5] => apple
   [6] => apple
   [7] => apple
   [8] => apple
   [9] => apple
   [10] => apple
)
php_function_reference.htm
广告