The Ds\Stack::push() function of PHP is used to add elements at the end of the stack. That is it is used to push elements on to a stack. The elements being pushed can be of mixed data types.
Syntax:
void public Ds\Stack::push ($values)
Parameter: This function accepts a single parameter $values which is used to push onto the stack.
Return Value: This function does not returns any value.
Below programs illustrate the Ds\Stack::push() function:
Program 1:
<?php // PHP program to illustarte the // push() 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); ?> |
Output:
Ds\Stack Object
(
[0] => GfG
[1] => to
[2] => Welcome
)
Program 2:
<?php // PHP program to illustarte the // push() 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); ?> |
Output:
Ds\Stack Object
(
[0] => 5.5
[1] => 10
[2] => GfG
[3] => to
[4] => Welcome
)
Reference: https://www.php.net/manual/en/ds-stack.push.php
Recommended Posts:
- PHP | Ds\Sequence push() Function
- PHP | Ds\Vector push() Function
- PHP | Ds\Deque push() Function
- PHP Ds\PriorityQueue push() Function
- PHP Ds\Queue push() Function
- PHP | SplDoublyLinkedList push() Function
- How to push a value based on matched value 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
- 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
- PHP | geoip_continent_code_by_name() 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.

