array_pad()是PHP的內置函數,用於將固定時間的值填充到數組上。此函數將指定次數的元素插入數組的前麵或後麵。
用法:
array array_pad($input_array, $input_size, $values)
參數:該函數接受三個參數,所有這些參數都是必須提供的。
- $input_array(強製性):指要在其上執行操作或需要向其添加元素的數組。
- $total_size(強製性):指要返回的新數組的總大小。
- 如果該值為正,則將元素添加到數組的末尾。
- 如果該值為負,則在數組的開頭添加元素。
- $values(必填):指將進行填充的值。僅當$total_size大於input_array的大小時,才會進行填充。
返回值:該函數返回填充為$total_size大小的數組的副本。如果$total_size的絕對值小於或等於數組的長度,則不進行填充。一次最多可以添加1048576個元素。
例子:
Input : array = ("one", "two", "three", "four", "five") $total_size = 7 , $value = "six" Output : Array ( [0] => one [1] => two [2] => three [3] => four [4] => five [5] => six [6] => six ) Input : array = ("one", "two", "three", "four", "five") $total_size = -7 , $value = "six" Output : Array ( [0] => six [1] => six [2] => one [3] => two [4] => three [5] => four [6] => five )
以下程序說明了array_pad()函數的工作方式:
- $total_size為正數時,在數組末尾填充元素:
<?php // PHP function to illustrate the use of array_pad() function Padding($array, $string) { $result = array_pad($array, 7, $string); return($result); } $array = array("one", "two", "three", "four", "five"); $string = "six"; print_r(Padding($array, $string)); ?>
輸出:
Array ( [0] => one [1] => two [2] => three [3] => four [4] => five [5] => six [6] => six )
- $total_size為負數時,在數組開頭填充元素:
<?php // PHP function to illustrate the use of array_pad() function Padding($array, $string) { $result = array_pad($array, -7, $string); return($result); } $array = array("one", "two", "three", "four", "five"); $string = "six"; print_r(Padding($array, $string)); ?>
輸出:
Array ( [0] => six [1] => six [2] => one [3] => two [4] => three [5] => four [6] => five )
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 PHP | array_pad() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。