Friday, June 12, 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

3 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS