PHP - Funzione Ds \ Stack :: toArray ()
La funzione Ds \ Stack :: toArray () può convertire lo stack in un array.
Sintassi
public array Ds\Stack::toArray( void )
La funzione Ds \ Stack :: toArray () non ha parametri.
La funzione Ds \ Stack :: toArray () può restituire un array contenente tutti i valori nello stesso ordine di uno stack.
Esempio
<?php
$stack = new \Ds\Stack();
$stack->push("Tutorials");
$stack->push("Point");
$stack->push("India");
print_r($stack->toArray());
print_r($stack);
?>