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