The Ds\Stack::toArray() function of PHP is used to convert the stack to an array and returns the converted array. This function does not modify the actual Stack.
Syntax:
void public Ds\Stack::toArray ()
Parameters: This function does not accepts any parameters.
Return Value: This function returns the array generated from the Stack.
Below programs illustrate the Ds\Stack::toArray() function:
Program 1:
<?php // PHP program to illustarte the // 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); ?> |
Output:
Array
(
[0] => GfG
[1] => to
[2] => Welcome
)
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
Program 2:
<?php // PHP program to illustarte the // 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); ?> |
Output:
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
)
Reference: http://php.net/manual/en/ds-stack.toarray.php
Recommended Posts:
- PHP | Ds\Collection toArray() Function
- PHP | Ds\Vector toArray() Function
- PHP Ds\Map toArray() Function
- PHP | Ds\Deque toArray() Function
- PHP Ds\PriorityQueue toArray() Function
- PHP Ds\Queue toArray() Function
- PHP Ds\Set toArray() Function
- PHP | SplFixedArray toArray() Function
- PHP | Ds\Pair toArray() Function
- How to get the function name inside a function in PHP ?
- PHP 5 vs PHP 7
- PHP | Get PHP configuration information using phpinfo()
- PHP | php.ini File Configuration
- How to import config.php file in a PHP script ?
- PHP | imagecreatetruecolor() Function
- PHP | fpassthru( ) Function
- PHP | ImagickDraw getTextAlignment() Function
- PHP | Ds\Sequence last() Function
- PHP | Imagick floodFillPaintImage() Function
- Function to escape regex patterns before applied in PHP
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

