Ds \ Deque::last()函數是PHP中的內置函數,如果Deque不為空,則用於返回Deque的最後一個元素。
用法:
public Ds\Deque::last( void ):mixed
參數:該函數不接受任何參數。
返回值:如果此函數不為空,則返回雙端隊列中的最後一個元素。
異常:如果Deque為空,則此函數引發UnderflowException。
以下示例程序旨在說明PHP中的Ds \ Deque::last()函數:
程序1:
<?php 
  
// Create a Deque 
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]); 
  
echo("Elements in the deque\n"); 
  
// Display the Deque Elements 
var_dump($deck); 
  
echo("\nLast element in the deque:"); 
  
// Use last() function to display the  
// last element from the deque 
var_dump($deck->last()); 
  
?>
輸出:
Elements in the deque
object(Ds\Deque)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}
Last element in the deque:int(6)
程序2:
<?php 
  
// Create a Deque 
$deck = new \Ds\Deque(["geeks", "for", "geeks"]); 
  
echo("Elements in the deque\n"); 
  
// Display the Deque Elements 
print_r($deck); 
  
echo("\nLast element in the deque:"); 
  
// Use last() function to display the  
// last element from the deque 
print_r($deck->last()); 
  
?>
輸出:
Elements in the deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)
Last element in the deque:geeks
參考: http://php.net/manual/en/ds-deque.last.php
相關用法
- PHP exp()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Deque last() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
