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


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