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