Open In App

PHP | Ds\Stack toArray() Function

Last Updated : 19 Jan, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

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 accept any parameters.

Return Value: This function returns the array generated from the Stack.

Below programs illustrate the Ds\Stack::toArray() function:

Program 1:  

Output: 

Array
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)
Ds\Stack Object
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)


Program 2: 

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
 


Next Article

Similar Reads