The Ds\Stack::pop() function of PHP is used to remove the element present at the top of the Stack instance. This function also returns the top element of the stack after removing it.
Syntax:
mixed public Ds\Stack::pop ( void )
Parameters: This function does not accepts any parameters.
Return Valuemixedmixed This function returns the element present at the top of the Stack and removes it from the stack.
Below programs illustrate the Ds\Stack::pop() function in PHP:
Program 1:
<?php // PHP program to illustarte the // pop() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the initial Stack print_r($stack); // Print the top element and remove it print_r($stack->pop()); // Print the Stack again print_r($stack); ?> |
Output:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
GfG
Ds\Stack Object
(
[0] => to
[1] => Welcome
)
Program 2:
<?php // PHP program to illustarte the // pop() 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 initially print_r($stack); // Print the top element and remove it print_r($stack->pop()); // Print the stack again print_r($stack); ?> |
Output:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
5.5
Ds\Stack Object
(
[0] => 10
[1] => GfG
[2] => to
[3] => Welcome
)
Reference: http://php.net/manual/en/ds-stack.pop.php
Recommended Posts:
- PHP | Ds\Deque pop() Function
- PHP | Ds\Sequence pop() Function
- PHP | Ds\Vector pop() Function
- PHP Ds\PriorityQueue pop() Function
- PHP Ds\Queue pop() Function
- PHP | SplDoublyLinkedList pop() Function
- PHP | ImagickDraw pop() Function
- How to pop an alert message box 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
- PHP | Ds\Sequence last() Function
- PHP | Imagick floodFillPaintImage() Function
- Function to escape regex patterns before applied in PHP
- PHP | array_udiff_uassoc() 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.

