PHP - Funzione Ds \ Stack :: count ()
La funzione Ds \ Stack :: count () può essere utilizzata per contare il numero di elementi presenti in uno stack.
Sintassi
int Ds\Stack::count( void )
La funzione Ds \ Stack :: count () non ha parametri.
La funzione Ds \ Stack :: count () può restituire il numero di valori in uno stack.
Esempio 1
<?php
$stack = new \Ds\Stack([1, 4, 5, 7, 9, 10]);
var_dump($stack);
echo "The number of elements present in a stack:";
print_r($stack->count());
?>
Esempio-2
<?php
$stack = new \Ds\Stack(["Tutorials", "Point", "India"]);
print_r($stack);
echo "The number of elements present in a stack:";
var_dump($stack->count());
?>