SplFixedArray::count()函數是PHP中的內置函數,用於返回數組的大小。
用法:
int SplFixedArray::count()
參數:該函數不接受任何參數。
返回值:此函數返回數組的大小。
以下示例程序旨在說明PHP中的SplFixedArray::count()函數:
示例1:
<?php
// Create an array of fixed size 10
$array = new SplFixedArray(10);
// Print size of the array
echo $array->count();
?>
輸出:
10
示例2:
<?php
// Creating fixed size array
$gfg = new SplFixedArray(8);
$gfg1 = new SplFixedArray(7);
$gfg2 = new SplFixedArray(9);
$gfg3 = new SplFixedArray(100);
$gfg4 = new SplFixedArray(878);
$gfg5 = new SplFixedArray(0);
// Print size of the array
echo $gfg1->count(). "\n";
echo $gfg2->count(). "\n";
echo $gfg3->count(). "\n";
echo $gfg4->count(). "\n";
// Count function can be used
// via passing parameters
echo count($gfg5) . "\n";
echo count($gfg) . "\n";
?>
輸出:
7 9 100 878 0 8
參考: https://www.php.net/manual/en/splfixedarray.count.php
相關用法
- PHP SplFixedArray key()用法及代碼示例
- PHP SplFixedArray next()用法及代碼示例
- PHP SplFixedArray rewind()用法及代碼示例
- PHP SplFixedArray setSize()用法及代碼示例
- PHP SplFixedArray offsetUnset()用法及代碼示例
- PHP SplFixedArray valid()用法及代碼示例
- PHP SplFixedArray current()用法及代碼示例
- PHP SplFixedArray getSize()用法及代碼示例
- PHP SplFixedArray offsetExists()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP SplFixedArray offsetGet()用法及代碼示例
- PHP SplFixedArray __construct()用法及代碼示例
- PHP count()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP Ds\Set count()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFixedArray count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。