PHP Ds\PriorityQueue clear() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The Ds\PriorityQueue::clear() Function in PHP is used to clear all of the elements from a PriorityQueue instance. This function just clears the instance without deleting it. Syntax: void public Ds\PriorityQueue::clear ( void ) Parameters: This function does not accepts any parameters. Return Value: This function does not returns any value. Below programs illustrate the Ds\PriorityQueue::clear() Function in PHP: Program 1: 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 "Initial PriorityQueue: \n"; // Display the PriorityQueue print_r($pq); // clear the PriorityQueue $pq->clear(); echo "\nPriorityQueue after clearing:\n"; print_r($pq); ?> Output: Initial PriorityQueue: Ds\PriorityQueue Object ( [0] => Three [1] => Two [2] => One ) PriorityQueue after clearing: Ds\PriorityQueue Object ( ) Program 2: php <?php // Declare new PriorityQueue $pq = new \Ds\PriorityQueue(); // Add elements to the PriorityQueue $pq->push("Geeks", 10); $pq->push("for", 20); $pq->push("Geeks", 30); echo "Initial PriorityQueue: \n"; // Display the PriorityQueue print_r($pq); // clear the PriorityQueue $pq->clear(); echo "\nPriorityQueue after clearing:\n"; print_r($pq); ?> Output: Initial PriorityQueue: Ds\PriorityQueue Object ( [0] => Geeks [1] => for [2] => Geeks ) PriorityQueue after clearing: Ds\PriorityQueue Object ( ) Reference: https://www.php.net/manual/en/ds-priorityqueue.clear.php Comment More infoAdvertise with us Next Article PHP Ds\PriorityQueue count() Function G gopaldave Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-ds_priorityqueue Similar Reads PHP Ds\PriorityQueue copy() Function The Ds\PriorityQueue::copy() Function in PHP is used to create a shallow copy of a particular PriorityQueue instance. This function does not affect the existing PriorityQueue instance, it just creates a shallow copy of the PriorityQueue and returns it. Syntax: Ds\PriorityQueue public Ds\PriorityQueu 1 min read PHP Ds\PriorityQueue copy() Function The Ds\PriorityQueue::copy() Function in PHP is used to create a shallow copy of a particular PriorityQueue instance. This function does not affect the existing PriorityQueue instance, it just creates a shallow copy of the PriorityQueue and returns it. Syntax: Ds\PriorityQueue public Ds\PriorityQueu 1 min read PHP Ds\PriorityQueue count() Function The Ds\PriorityQueue::count() Function in PHP is used to get the count of elements present in a Priority Queue instance. Syntax: int public Ds\PriorityQueue::count( void ) Parameters: This function does not accepts any parameters. Return Value: This function calculates the number of elements present 1 min read PHP Ds\PriorityQueue count() Function The Ds\PriorityQueue::count() Function in PHP is used to get the count of elements present in a Priority Queue instance. Syntax: int public Ds\PriorityQueue::count( void ) Parameters: This function does not accepts any parameters. Return Value: This function calculates the number of elements present 1 min read PHP Ds\PriorityQueue capacity() Function The Ds\PriorityQueue::capacity() Function in PHP is used to check the current capacity of a PriorityQueue instance. Syntax: int public Ds\PriorityQueue::capacity ( void ) Parameters: This function does not accepts any parameters. Return Value: This function returns the current capacity of the Priori 1 min read PHP Ds\PriorityQueue capacity() Function The Ds\PriorityQueue::capacity() Function in PHP is used to check the current capacity of a PriorityQueue instance. Syntax: int public Ds\PriorityQueue::capacity ( void ) Parameters: This function does not accepts any parameters. Return Value: This function returns the current capacity of the Priori 1 min read Like