PHP | Ds\Stack peek()函数
PHP的Ds\Stack::peek()函数用于获取出现在 Stack 实例顶部的元素。该函数只返回栈顶元素而不将其从栈中移除。
句法:
mixed public Ds\Stack::peek ( void )
参数:该函数不接受任何参数。
返回值:此函数返回存在于堆栈顶部的元素。
下面的程序说明了PHP的Ds\Stack::peek()函数:
方案一:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the top element
print_r($stack->peek());
?>
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Print the top element
print_r($stack->peek());
?>
输出:
GfG
方案二:
PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Print the top element
print_r($stack->peek());
?>
输出:
5.5
参考文献:http:// PHP.NET /手动/ EN / DS-stack.peek。 PHP