From http://www.w3schools.com (Copyright Refsnes Data)
The array_sum() function returns the sum of all the values in the array.
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 |
From http://www.w3schools.com (Copyright Refsnes Data)