La función Ds\Deque::get() es una función incorporada en PHP que se usa para devolver el valor en el índice dado.
Sintaxis:
public Ds\Deque::get( $index ) : mixed
Parámetros: esta función acepta un único parámetro $index que contiene el índice para el que se va a encontrar el elemento.
Valor devuelto: esta función devuelve el valor en el índice dado.
Los siguientes programas ilustran la función Ds\Deque::get() en PHP:
Programa 1:
<?php // Declare a deque $deck = new \Ds\Deque([10, 20, 3, 40, 50, 6]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nElement at index 2 in the deque: "); // Use get() function to find the index value var_dump($deck->get(2)); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => 10 [1] => 20 [2] => 3 [3] => 40 [4] => 50 [5] => 6 ) Element at index 2 in the deque: int(3)
Programa 2:
<?php // Declare a deque $deck = new \Ds\Deque(["geeks", "for", "geeks", "PHP"]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nElement at index 2 in the deque: "); // Use get() function to find the index value var_dump($deck->get(2)); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => geeks [1] => for [2] => geeks [3] => PHP ) Element at index 2 in the deque: string(5) "geeks"
Referencia: http://php.net/manual/en/ds-deque.get.php