當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Stack peek()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Stack peek() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。