The Ds\Stack::copy() function of PHP Ds\Stack class is used to create a shallow copy of the original stack and returns the copied stack.
Syntax:
Ds\Stack public Ds\Stack::copy ( void )
Parameters: This function does not accepts any parameters.
Return Value: This function returns a shallow copy of the original stack.
Below programs illustrate the Ds\Stack::copy() function:
Program 1:
<?php // PHP program to illustarte the // copy() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the Copied Stack print_r($stack->copy()); ?> |
Output:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
Program 2:
<?php // PHP program to illustarte the // copy() 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 copied stack print_r($stack->copy()); ?> |
Output:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
Reference: http://php.net/manual/en/ds-stack.copy.php
Recommended Posts:
- PHP | copy( ) Function
- PHP | Ds\Collection copy() Function
- PHP | Ds\Vector copy() Function
- PHP Ds\Map copy() Function
- PHP | Ds\Deque copy() Function
- PHP | Ds\Set copy() Function
- PHP Ds\PriorityQueue copy() Function
- PHP Ds\Queue copy() Function
- PHP | Ds\Pair copy() Function
- Copy the entire contents of a directory to another directory in PHP
- How to create a copy of an object in PHP?
- How to copy a file from one directory to another using PHP ?
- How to copy a DateTime object in PHP ?
- 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
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.

