(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"