La función Ds\Deque::last() es una función incorporada en PHP que se usa para devolver el último elemento de Deque si Deque no está vacío.
Sintaxis:
public Ds\Deque::last( void ) : mixed
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el último elemento de la deque si no está vacío.
Excepción: esta función lanza UnderflowException si Deque está vacío.
Los siguientes programas ilustran la función Ds\Deque::last() en PHP:
Programa 1:
<?php // Create a Deque $deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]); echo("Elements in the deque\n"); // Display the Deque Elements var_dump($deck); echo("\nLast element in the deque: "); // Use last() function to display the // last element from the deque var_dump($deck->last()); ?>
Producción:
Elements in the deque object(Ds\Deque)#1 (6) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) [4]=> int(5) [5]=> int(6) } Last element in the deque: int(6)
Programa 2:
<?php // Create a Deque $deck = new \Ds\Deque(["geeks", "for", "geeks"]); echo("Elements in the deque\n"); // Display the Deque Elements print_r($deck); echo("\nLast element in the deque: "); // Use last() function to display the // last element from the deque print_r($deck->last()); ?>
Producción:
Elements in the deque Ds\Deque Object ( [0] => geeks [1] => for [2] => geeks ) Last element in the deque: geeks
Referencia: http://php.net/manual/en/ds-deque.last.php