Copyright © tutorialspoint.com
| array_sum ( $array ); |
Calculate the sum of values in an array and returns the sum of values in an array as an integer or float.
| Parameter | Description |
|---|---|
| array | Required. Specifies an array. |
It returns the sum of values in an array as an integer or float.
Try out following example:
<?php
$a = array(2, 4, 6, 8);
echo "sum(a) = " . array_sum($a) . "<br />";
$b = array("a" => 1.2, "b" => 2.3, "c" => 3.4);
echo "sum(b) = " . array_sum($b) . "<br />";
?>
|
This will produce following result:
sum(a) = 20 sum(b) = 6.9 |
Copyright © tutorialspoint.com