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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。