返回 5 个元素,并将值 "blue" 插入到数组中的新元素中:
<?php
$a=array("red","green");
print_r(array_pad($a,5,"blue"));
?>
亲自试一试 »
array_pad() 函数将指定数量的具有指定值的元素插入到数组中。
提示:如果指定负大小参数,该函数将在原始元素之前插入新元素(请参见下面的示例)。
笔记:如果 size 参数小于原始数组的大小,则该函数不会删除任何元素。
array_pad(
array, size, value)
Parameter | Description |
---|---|
array | Required. Specifies an array |
size | Required. Specifies the number of elements in the array returned from the function |
value | Required. Specifies the value of the new elements in the array returned from the function |
返回值: | 返回一个包含新元素的数组 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!