Returns the sum of all values in the set

Ds\Set::sum

(PECL ds >= 1.0.0)

Ds\Set::sumReturns the sum of all values in the set

說明

public Ds\Set::sum(): int|float

Returns the sum of all values in the set.

注意:

Arrays and objects are considered equal to zero when calculating the sum.

參數

此函式沒有參數。

返回值

The sum of all the values in the set as either a float or int depending on the values in the set.

範例

示例 #1 Ds\Set::sum() integer example

<?php
$set 
= new \Ds\Set([123]);
var_dump($set->sum());
?>

以上例程的輸出類似於:

int(6)

示例 #2 Ds\Set::sum() float example

<?php
$set 
= new \Ds\Set([12.53]);
var_dump($set->sum());
?>

以上例程的輸出類似於:

float(6.5)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *