(PECL ds >= 1.0.0)
Ds\Queue::peek — 返回队列首部的值
此函数没有参数。
队列首部的值。
如果队列为空,则抛出 UnderflowException 异常。
示例 #1 Ds\Queue::peek() 示例
<?php
$queue = new \Ds\Queue();
$queue->push("a");
$queue->push("b");
$queue->push("c");
var_dump($queue->peek());
?>
以上示例的输出类似于
string(1) "a"