- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP array_pad() 函数
实例
返回 5 个元素,并将 "blue" 值插入到数组的新元素中:
<?php
$a=array("red","green");
print_r(array_pad($a,5,"blue"));
?>
$a=array("red","green");
print_r(array_pad($a,5,"blue"));
?>
定义和用法
array_pad() 函数将指定数量的带有指定值的元素插入到数组中。
提示:如果您将 size 参数设置为负数,该函数会在原始数组之前插入新的元素(参见下面的实例)。
注释:如果 size 参数小于原始数组的长度,该函数不会删除任何元素。
语法
array_pad(array,size,value)
参数 | 描述 |
---|---|
array | 必需。规定数组。 |
size | 必需。规定从函数返回的数组元素个数。 |
value | 必需。规定从函数返回的数组中新元素的值。 |
技术细节
返回值: | 返回带有新元素的数组。 |
---|---|
PHP 版本: | 4+ |
更多实例
实例 1
使用负数值的 size 参数:
<?php
$a=array("red","green");
print_r(array_pad($a,-5,"blue"));
?>
$a=array("red","green");
print_r(array_pad($a,-5,"blue"));
?>
完整的 PHP Array 参考手册
关注微信小程序
扫描二维码
程序员编程王