SplFixedArray::getSize()函數是PHP中的內置函數,用於獲取數組的大小。
用法:
int SplFixedArray::getSize()
參數:該函數不接受任何參數。
返回值:此函數返回數組的大小。
以下示例程序旨在說明PHP中的SplFixedArray::getSize()函數:
示例1:
<?php
// Create a fixed array
$gfg = new SplFixedArray(15);
// Print Size of the array
echo $gfg->getSize();
?>
輸出:
15
示例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.getsize.php
相關用法
- PHP DirectoryIterator getSize()用法及代碼示例
- PHP Imagick getSize()用法及代碼示例
- PHP SplFileInfo getSize( )用法及代碼示例
- PHP Gmagick getsize()用法及代碼示例
- PHP SplFixedArray key()用法及代碼示例
- PHP SplFixedArray next()用法及代碼示例
- PHP SplFixedArray setSize()用法及代碼示例
- PHP SplFixedArray valid()用法及代碼示例
- PHP SplFixedArray rewind()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP SplFixedArray __construct()用法及代碼示例
- PHP SplFixedArray current()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP SplFixedArray offsetExists()用法及代碼示例
- PHP SplFixedArray offsetGet()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFixedArray getSize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。