当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Set last()用法及代码示例


Ds \ Set::last()函数是PHP中的一个内置函数,用于从Set实例返回最后一个元素。

用法:

void public Ds\Set::last( void ) 

参数:该函数不接受任何参数。


返回值:此函数返回Set的最后一个值。

以下示例程序旨在说明PHP中的Ds \ Set::last()函数:

程序1:

<?php 
  
// PHP program to illustarte the  
// last() function  
  
// Create a set instance 
$set = new \Ds\Set(); 
  
// Adding elements to Set 
$set->add("Welcome"); 
$set->add("to"); 
$set->add("GfG"); 
  
// Print the last element from set 
print_r($set->last()); 
  
?>
输出:
GfG

程序2:

<?php 
  
// PHP program to illustarte the  
// last() function  
  
// Create a set instance 
$set = new \Ds\Set(); 
  
// Adding elements to Set 
$set->add("10"); 
$set->add("20"); 
$set->add("30"); 
  
// Print the last element from set 
print_r($set->last()); 
  
?>
输出:
30

参考: http://php.net/manual/en/ds-set.last.php



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Set last() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。