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


PHP Ds\Set sum()用法及代碼示例


PHP中Ds \ Set類的Ds \ Set::sum()函數是一個內置函數,用於查找Set中存在的所有元素的總和。

用法:

number public Ds\Set::sum ( void ) 

參數:該函數不接受任何參數。


返回值:此函數返回Set中存在的值的總和。函數的返回類型可以是整數,也可以是浮點數,具體取決於Set實例中存在的值的類型。

以下示例程序旨在說明Ds \ Set::sum()函數:

程序1:

<?php  
  
// Declare an empty set  
$set = new \Ds\Set([1, 2, 3, 4, 5]); 
  
// Print the sum of all values 
echo("Sum of all values is:");  
print_r($set->sum());  
  
?> 
輸出:
Sum of all values is:15

程序2:

<?php  
  
// Declare an empty set  
$set = new \Ds\Set([1.1, 2.2, 3.5, 4.9, 5]); 
  
// Print the sum of all values 
echo("Sum of all values is:");  
print_r($set->sum());  
  
?> 
輸出:
Sum of all values is:16.7

參考: http://php.net/manual/en/ds-set.sum.php



相關用法


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