La función Ds\Stack::peek() de PHP se usa para obtener el elemento presente en la parte superior de la instancia de Stack. Esta función solo devuelve el elemento superior de la pila sin eliminarlo de la pila.
Sintaxis:
mixed public Ds\Stack::peek ( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve el elemento presente en la parte superior de la pila.
Los siguientes programas ilustran la función Ds\Stack::peek() en PHP:
Programa 1:
PHP
<?php // PHP program to illustrate the // Ds\stack::peek() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the top element print_r($stack->peek()); ?>
Producción:
GfG
Programa 2:
PHP
<?php // PHP program to illustrate the // Ds\stack::peek() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing Mixed value elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); $stack->push(10); $stack->push(5.5); // Print the top element print_r($stack->peek()); ?>
Producción:
5.5
Referencia : http://php.net/manual/en/ds-stack.peek.php