PHP | Función Ds\\Deque count()

La función Ds\Deque::count() es una función incorporada en PHP que se usa para obtener la cantidad de elementos en Deque.

Sintaxis:

public Ds\Deque::count( void ) : int

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: Esta función devuelve el número de elementos en el Deque.

Los siguientes programas ilustran la función Ds\Deque::count() en PHP:

Programa 1:

<?php
  
// Declare a deque
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
  
echo("Elements in the Deque\n");
  
// Display the Deque elements
print_r($deck);
  
echo("\nNumber of elements in the Deque: ");
  
print_r($deck->count());
  
?>
Producción:

Elements in the Deque
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)

Number of elements in the Deque: 6

Programa 2:

<?php
  
// Declare a deque
$deck = new \Ds\Deque(["geeks", "for", "geeks"]);
  
echo("Elements in the Deque\n");
  
// Display the Deque elements
print_r($deck);
  
echo("\nNumber of elements in the Deque: ");
  
print_r($deck->count());
  
?>
Producción:

Elements in the Deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)

Number of elements in the Deque: 3

Referencia: http://php.net/manual/en/ds-deque.count.php

Publicación traducida automáticamente

Artículo escrito por barykrg y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *