Saturday, November 22, 2025
HomeLanguagesPHP DsQueue clear() Function

PHP Ds\Queue clear() Function

The Ds\Queue::clear() Function in PHP is used to clear all of the elements from a Queue instance. This function just clears the instance without deleting it.

Syntax: 

void public Ds\Queue::clear ( void )

Parameters: This function does not accepts any parameters.

Return Value: This function does not returns any value.

Below programs illustrate the Ds\Queue::clear() function in PHP:

Program 1:  

PHP




<?php
 
// Declare new Queue
$q = new \Ds\Queue();
 
// Add elements to the Queue
$q->push("One");
$q->push("Two");
$q->push("Three");
 
echo "Initial Queue: \n";
// Display the Queue
print_r($q);
 
// clear the Queue
$q->clear();
 
echo "\nQueue after clearing:\n";
print_r($q);
 
?>


Output: 

Initial Queue: 
Ds\Queue Object
(
    [0] => One
    [1] => Two
    [2] => Three
)

Queue after clearing:
Ds\Queue Object
(
)




 

Program 2: 

PHP




<?php
 
// Declare new Queue
$q = new \Ds\Queue();
 
// Add elements to the Queue
$q->push("Geeks");
$q->push("for");
$q->push("Geeks");
 
echo "Initial Queue: \n";
// Display the Queue
print_r($q);
 
// clear the Queue
$q->clear();
 
echo "\nQueue after clearing:\n";
print_r($q);
 
?>


Output: 

Initial Queue: 
Ds\Queue Object
(
    [0] => Geeks
    [1] => for
    [2] => Geeks
)

Queue after clearing:
Ds\Queue Object
(
)




 

Reference: http://php.net/manual/en/ds-queue.clear.php
 

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS