Syntax:int SplFixedArray::count()
Parameters:this the function does not take any parameters.
Returned value:this function returns the size of the array.The programs below illustrate the
function SplFixedArray::count() in PHP:
Program 1:
// Create a fixed size 10 array
$array
=
new
SplFixedArray (10 );
// Array print size
echo
$array
->
count
();
?>
Exit:10
Program 2:
// Create a 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);
// Array print size
echo
$gfg1
->
count
().
""
;
echo
$gfg2
->
count
().
""
;
echo
$gfg3
->
count
().
""
;
echo
$gfg4
->
count
().
""
;
// The count function can be used
// via transfer parameters
echo
count
(
$gfg5
).
""
;
echo
count
(
$gfg
).
""
;
?>
Exit:7 9 100 878 0 8
Link: https://www.php .net / manual / en / splfixedarray.count.php