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
$stack = new \Ds\Stack();
$stack ->push( "Welcome" );
$stack ->push( "to" );
$stack ->push( "GfG" );
print_r( $stack ->toArray());
print_r( $stack );
?>
|
Output:
Array
(
[0] => GfG
[1] => to
[2] => Welcome
)
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
Program 2:
PHP
<?php
$stack = new \Ds\Stack();
$stack ->push( "Welcome" );
$stack ->push( "to" );
$stack ->push( "GfG" );
$stack ->push(10);
$stack ->push(5.5);
print_r( $stack ->toArray());
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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!