La función Ds\Stack::toArray() de PHP se usa para convertir la pila en una array y devuelve la array convertida. Esta función no modifica la pila real.
Sintaxis:
void public Ds\Stack::toArray ()
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve la array generada a partir de la pila.
Los siguientes programas ilustran la función Ds\Stack::toArray() :
Programa 1:
PHP
<?php // PHP program to illustrate the // Ds\stack::toArray() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the converted array print_r($stack->toArray()); // Print the Stack print_r($stack); ?>
Producción:
Array ( [0] => GfG [1] => to [2] => Welcome ) Ds\Stack Object ( [0] => GfG [1] => to [2] => Welcome )
Programa 2:
PHP
<?php // PHP program to illustrate the // Ds\stack::toArray() 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 converted Array print_r($stack->toArray()); // Print the Stack print_r($stack); ?>
Producción:
Array ( [0] => 5.5 [1] => 10 [2] => GfG [3] => to [4] => Welcome ) Ds\Stack Object ( [0] => 5.5 [1] => 10 [2] => GfG [3] => to [4] => Welcome )
Referencia : http://php.net/manual/en/ds-stack.toarray.php