Ds\Set::sum

(PECL ds >= 1.0.0)

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

Описание

public number Ds\Set::sum ( void )

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)

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ