Thursday, July 30, 2026
HomeLanguagesPHP DsQueue copy() Function

PHP Ds\Queue copy() Function

The Ds\Queue::copy() Function in PHP is used to create a shallow copy of a particular Queue instance. This function does not affect the existing Queue instance, it just creates a shallow copy of the Queue and returns it.

Syntax:

Ds\Queue public Ds\Queue::copy ( void )

Parameters: This function does not accepts any parameters.

Return Value: This function creates a shallow copy of an existing Queue instance and returns it.

Below programs illustrate the Ds\Queue::copy() Function in PHP:

Program 1:




<?php 
  
// Declare new Queue  
$q = new \Ds\Queue(); 
  
// Add elements to the Queue 
$q->push("One");
$q->push("Two");
$q->push("Three");
  
// Create copy of this Queue 
// instance and print it
print_r($q->copy());
  
?> 


Output:

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

Program 2:




<?php 
  
// Declare new Queue  
$q = new \Ds\Queue(); 
  
// Add elements to the Queue 
$q->push("Geeks");
$q->push("for");
$q->push("Geeks");
  
// Create copy of this Queue 
// instance and print it
print_r($q->copy());
  
?> 


Output:

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

Reference: http://php.net/manual/en/ds-priorityqueue.copy.php

RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS