Thursday, July 30, 2026
HomeLanguagesPHP | DsStack toArray() Function

PHP | Ds\Stack toArray() Function

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:  

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);
 
?>


Output: 

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

Program 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);
 
?>


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
 

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS