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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。