目录

PHP array_fill() 函数

❮ PHP 数组参考

示例

用值填充数组:

<?php
$a1=array_fill(3,4,"blue");
print_r($a1);
?>
亲自试一试 »

定义和用法

array_fill() 函数用值填充数组。


语法

array_fill( index, number, value)

参数值

Parameter Description
index Required. The first index of the returned array
number Required. Specifies the number of elements to insert
value Required. Specifies the value to use for filling the array

技术细节

返回值: 返回填充的数组
PHP 版本: 4.2+

❮ PHP 数组参考