(PECL ds >= 1.0.0)
Ds\PriorityQueue::copy — 返回队列的浅拷贝
此函数没有参数。
返回队列的浅拷贝。
示例 #1 Ds\PriorityQueue::copy() 示例
<?php
$queue = new \Ds\PriorityQueue();
$queue->push("a", 5);
$queue->push("b", 15);
$queue->push("c", 10);
print_r($queue->copy());
?>
上面的例子将输出类似以下内容
Ds\PriorityQueue Object ( [0] => b [1] => c [2] => a )