PHP - Funzione Ds \ Stack :: pop ()
La funzione Ds \ Stack :: pop () può rimuovere e restituire il valore all'inizio di uno stack.
Sintassi
public mixed Ds\Stack::pop( void )
La funzione Ds \ Stack :: pop () non ha parametri.
La funzione Ds \ Stack :: pop () può restituire il valore rimosso che era in cima a uno stack.
La funzione Ds \ Stack :: pop () può generare UnderflowException se vuota.
Esempio
<?php
$stack = new \Ds\Stack();
$stack->push("Tutorials");
$stack->push("Point");
$stack->push("India");
print_r($stack);
print_r($stack->pop());
print_r($stack);
?>