A função Ds \ Stack :: peek () pode retornar o valor no topo de uma pilha.
Sintaxe
public mixed Ds\Stack::peek( void )
A função Ds \ Stack :: peek () pode retornar o valor no topo de uma pilha, mas não o remove.
A função Ds \ Stack :: peek () não tem parâmetros.
A função Ds \ Stack :: peek () pode lançar UnderflowException se estiver vazia.
Exemplo
<?php
$stack = new \Ds\Stack();
$stack->push("Tutorials");
$stack->push("Point");
$stack->push("India");
print_r($stack->peek());
?>