Tuesday, October 7, 2025
HomeLanguagesPHP DsPriorityQueue copy() Function

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\PriorityQueue::copy ( void )

Parameters: This function does not accepts any parameters.

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

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

Program 1:




<?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);
  
// Create copy of this PriorityQueue
// instance and print it
print_r($pq->copy());
  
?> 


Output:

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

Program 2:




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


Output:

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

Reference: http://php.net/manual/en/ds-priorityqueue.copy.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!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS