A função Ds \ Stack :: toArray () pode converter a pilha em uma matriz.
Sintaxe
public array Ds\Stack::toArray( void )
A função Ds \ Stack :: toArray () não tem parâmetros.
A função Ds \ Stack :: toArray () pode retornar uma matriz contendo todos os valores na mesma ordem de uma pilha.
Exemplo
<?php
$stack = new \Ds\Stack();
$stack->push("Tutorials");
$stack->push("Point");
$stack->push("India");
print_r($stack->toArray());
print_r($stack);
?>