(PECL ds >= 1.0.0)
Ds\PriorityQueue::peek — 返回队列前端的值
此函数没有参数。
队列前端的值。
UnderflowException 如果为空。
示例 #1 Ds\PriorityQueue::peek() 示例
<?php
$queue = new \Ds\PriorityQueue();
$queue->push("a", 5);
$queue->push("b", 15);
$queue->push("c", 10);
var_dump($queue->peek());
?>
上面的示例将输出类似于以下内容
string(1) "b"