当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > array_sum() 函数
The array_sum() function returns the sum of all the values in the array.
array_sum()函数的作用是:返回数组中所有值的总和。
array_sum(array) |
Parameter参数 | Description描述 |
---|---|
array | Required. Specifies an array 必要参数。指定一个数组 |
<?php $a=array(0=>"5",1=>"15",2=>"25"); echo array_sum($a); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
45 |