The Ds\Stack::clear() function of PHP is used to remove all elements from a Stack and clear it. This function simply removes all of the elements from the Stack but not completely deletes it. It just empties it.
Syntax:
void public Ds\Stack::clear ( void )
Parameters: This function does not accepts any parameters.
Return Value: This function does not returns any value.
Below programs illustrate the Ds\Stack::clear() function:
Program 1:
<?php // PHP program to illustarte the // clear() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the stack print_r($stack); // clear the stack $stack->clear(); // Print the stack again print_r($stack); ?> |
Output:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
Ds\Stack Object
(
)
Program 2::
<?php // PHP program to illustarte the // clear() 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 stack print_r($stack); // clear the stack $stack->clear(); // Print the stack again print_r($stack); ?> |
Output:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
Ds\Stack Object
(
)
Reference: http://php.net/manual/en/ds-stack.clear.php
Recommended Posts:
- PHP | Imagick clear() Function
- PHP | Ds\Collection clear() Function
- PHP | DS\Map clear() Function
- PHP | Ds\Vector clear() Function
- PHP | Gmagick clear() Function
- PHP | Ds\Set clear() Function
- PHP | Ds\Deque clear() Function
- PHP Ds\PriorityQueue clear() Function
- PHP Ds\Queue clear() Function
- PHP | Ds\Pair clear() Function
- PHP | ImagickDraw clear() Function
- How to clear APC cache entries using 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
- PHP | ImagickDraw getTextAlignment() 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.

