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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。
