SplFixedArray::setSize()函數是PHP中的內置函數,用於設置數組的大小。
用法:
bool SplFixedArray::setSize( $size )
參數:此函數接受單個參數$size,該參數指定數組的大小。
返回值:成功時此函數返回true,否則返回false。
以下示例程序旨在說明PHP中的SplFixedArray::setSize()函數:
程序1:
<?php
// Create fixed size array
$gfg = new SplFixedArray(50);
// Print size before set
echo $gfg->getSize() . "\n";
// Set size of array
$gfg->setSize(110);
// Print result after set the size
echo $gfg->getSize() . "\n";
?>
輸出:
50 110
程序2:
<?php
// Create some fixed size array
$gfg1 = new SplFixedArray(0);
$gfg2 = new SplFixedArray(9);
$gfg3 = new SplFixedArray(100);
$gfg4 = new SplFixedArray(878);
// Print Size of the array
echo $gfg1->getSize() . "\n";
echo $gfg2->getSize() . "\n";
echo $gfg3->getSize() . "\n";
echo $gfg4->getSize() . "\n";
// Set array size
$gfg1->setSize(100);
$gfg2->setSize(200);
// Print size after set
echo $gfg1->getSize() . "\n";
echo $gfg2->getSize() . "\n";
?>
輸出:
0 9 100 878 100 200
參考: https://www.php.net/manual/en/splfixedarray.setsize.php
相關用法
- PHP Imagick setSize()用法及代碼示例
- PHP Gmagick setsize()用法及代碼示例
- PHP SplFixedArray key()用法及代碼示例
- PHP SplFixedArray next()用法及代碼示例
- PHP SplFixedArray current()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP SplFixedArray __construct()用法及代碼示例
- PHP SplFixedArray getSize()用法及代碼示例
- PHP SplFixedArray rewind()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP SplFixedArray offsetUnset()用法及代碼示例
- PHP SplFixedArray offsetGet()用法及代碼示例
- PHP SplFixedArray offsetExists()用法及代碼示例
- PHP SplFixedArray valid()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFixedArray setSize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。