array_fill() 函數 用給定的值填充數組
【功能】
該函數將返回一個新的數組,
該數組用被指定的數量的指定內容填充。
【使用范圍】
php4 > 4.2.0、php5.
【使用】
array array_fill( int start_index, int num, mixed value )
start_index/必需/新數組中鍵名的開始數
num/必需/為新數組填充的個數,該值必須是一個大於零的值,否則php會發出一條警告
value/必需/為新數組中的值
【示例】
[php]
<?php
print_r( array_fill( 5, 6, "hehe" ) );
/*
Array
(
[5] => hehe
[6] => hehe
[7] => hehe
[8] => hehe
[9] => hehe
[10] => hehe
)
*/
摘自 zuodefeng的筆記