PHP的Ds \ Map::sum()函数用于获取Map实例中存在的所有值的总和。
用法:
number public Ds\Map::sum ( void )
参数:该函数不接受任何参数。
返回值:此函数返回Map实例中存在的所有值的总和。函数的返回类型可以是int或float,这取决于Map中存在的值的类型。
以下示例程序旨在说明Ds \ Map::sum()函数:
程序1::
<?php
// PHP program to illustrate sum() function
$map = new \Ds\Map([1 => 10, 2 => 20,
3 => 30]);
// The function returns an int which is
// the sum of values present in the Map
print_r($map->sum());
?>
输出:
60
程序2::
<?php
// PHP program to illustrate sum() function
$map = new \Ds\Map([1 => 10, 2 => 20.9,
3 => 30]);
// The function returns a float value which is
// the sum of values present in the Map
print_r($map->sum());
?>
输出:
60.9
参考:http://php.net/manual/en/ds-map.sum.php
相关用法
- PHP end()用法及代码示例
- PHP abs()用法及代码示例
- PHP pos()用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP key()用法及代码示例
- PHP each()用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP pow( )用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP tan( )用法及代码示例
- PHP dir()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Map sum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。