Ds\Queue::peek

(PECL ds >= 1.0.0)

Ds\Queue::peek返回队列前端的值

说明

public Ds\Queue::peek(): mixed

返回队列前端的值,但不移除它。

参数

此函数没有参数。

返回值

队列前端的值。

错误/异常

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"
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top