Returns the sum of all values in the vector

Ds\Vector::sum

(PECL ds >= 1.0.0)

Ds\Vector::sumReturns the sum of all values in the vector

說明

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

Returns the sum of all values in the vector.

注意:

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

參數

此函式沒有參數。

返回值

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

範例

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

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

以上例程的輸出類似於:

int(6)

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

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

以上例程的輸出類似於:

float(6.5)

發佈留言

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