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
相关用法
- PHP exp()用法及代码示例
- PHP ord()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- PHP dir()用法及代码示例
- PHP pos()用法及代码示例
- PHP tan( )用法及代码示例
- PHP min( )用法及代码示例
- PHP key()用法及代码示例
- PHP each()用法及代码示例
- PHP abs()用法及代码示例
- PHP end()用法及代码示例
- PHP cos( )用法及代码示例
- PHP max( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Set sum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。