PHP array_fill() 函数用法及示例

PHP Array 函数手册

PHP array_fill() 函数用给定的值填充数组

语法

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

定义和用法

  • start_index
    返回的数组的第一个索引值。
    如果 start_index 是负数, 那么返回的数组的第一个索引将会是 start_index ,而后面索引则从0开始。 (参见 实例)。

  • num
    插入元素的数量。 必须大于或等于 0。

  • value
    用来填充的值。

参数

序号参数及说明
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 Array 函数手册