PHP的Ds \ Stack::peek()函数用于获取出现在Stack实例顶部的元素。此函数仅返回堆栈的顶部元素,而无需将其从堆栈中删除。
用法:
mixed public Ds\Stack::peek ( void )
参数:该函数不接受任何参数。
返回值:此函数返回出现在堆栈顶部的元素。
以下示例程序旨在说明PHP中的Ds \ Stack::peek()函数:
程序1:
<?php
// PHP program to illustarte the
// peek() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the top element
print_r($stack->peek());
?>
输出:
GfG
程序2:
<?php
// PHP program to illustarte the
// peek() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing Mixed value elements to Stack
$stack->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/manual/en/ds-stack.peek.php
相关用法
- PHP Ds\Queue peek()用法及代码示例
- PHP Ds\PriorityQueue peek()用法及代码示例
- PHP end()用法及代码示例
- PHP each()用法及代码示例
- PHP tan( )用法及代码示例
- PHP Ds\Set get()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP dir()用法及代码示例
- PHP ord()用法及代码示例
- PHP pos()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Set sum()用法及代码示例
- PHP key()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Stack peek() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。