The Ds\PriorityQueue::push() Function in PHP is used to push or insert values in a PriorityQueue instance. This function pushes values along with a given priority in the PriorityQueue.
Syntax:
void public Ds\PriorityQueue::push($value, $priority)
Parameters: This function accepts two parameters:
- $value: This is the value to be inserted in the PriorityQueue.
- $priority: This parameter is the priority according to which the value will be arranged in the PriorityQueue.
Return Value: This function does not returns any value.
Below program illustrate the Ds\PriorityQueue::push() Function in PHP:
<?php // Declare new PriorityQueue $pq = new \Ds\PriorityQueue(); // Add elements to the PriorityQueue $pq->push("One", 1); $pq->push("Two", 2); $pq->push("Three", 3); echo "PriorityQueue is: \n"; print_r($pq); |
PriorityQueue is:
Ds\PriorityQueue Object
(
[0] => Three
[1] => Two
[2] => One
)
Reference: http://php.net/manual/en/ds-priorityqueue.push.php
Recommended Posts:
- PHP | Ds\Sequence push() Function
- PHP | Ds\Vector push() Function
- PHP | Ds\Deque push() Function
- PHP | Ds\Stack 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.

