【函数分享】每日PHP函数分享(2021-2-27)
2021-03-01 02:26
标签:sni 错误 分享 code array 第一个 count 大于 data array_fill — 用给定的值填充数组 说明 用 参数 start_index:返回的数组的第一个索引值。如果 count:要插入元素的数量。必须大于或等于 0。 value:用来填充的值。 返回值 返回填充后的数组。 错误/异常 如果 范例 【函数分享】每日PHP函数分享(2021-2-27) 标签:sni 错误 分享 code array 第一个 count 大于 data 原文地址:https://www.cnblogs.com/leruge/p/14454737.htmlarray_fill ( int $start_index , int $count , mixed $value ) : array
value
参数的值填充 count
个元素到数组, 开始键名由 start_index
参数指定。start_index
是负数, 那么返回的数组的第一个索引将会是 start_index
,而后面索引则从0开始。、count
小于零,将会抛出 E_WARNING
。
输出
Array
(
[5] => banana
[6] => banana
[7] => banana
[8] => banana
[9] => banana
[10] => banana
)
Array
(
[-2] => pear
[0] => pear
[1] => pear
[2] => pear
)
下一篇:开放数据网站
文章标题:【函数分享】每日PHP函数分享(2021-2-27)
文章链接:http://soscw.com/index.php/essay/58350.html