La función Ds\Queue::count() en PHP se utiliza para obtener el recuento de elementos presentes en una instancia de Queue.
Sintaxis:
int public Ds\Queue::count ( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función calcula el número de elementos presentes en una instancia de Queue y devuelve el recuento.
Los siguientes programas ilustran la función Ds\Queue::count() en PHP:
Programa 1:
<?php // Declare new Queue $q = new \Ds\Queue(); // Add elements to the Queue $q->push("One"); $q->push("Two"); $q->push("Three"); // Count the number of elements // in this Queue print_r($q->count()); ?>
Producción:
3
Programa 2:
<?php // Declare new Queue $q = new \Ds\Queue(); // Add elements to the Queue $q->push("Geeks"); $q->push("for"); $q->push("Geeks"); // Count the number of elements // in this Queue print_r($q->count()); ?>
Producción:
3
Referencia : http://php.net/manual/en/ds-priorityqueue.count.php