Backend Development 2 min read
PHP array_sum() Function – Summing All Values in an Array
This article explains the PHP array_sum() function, describing its purpose, parameter, return value, and provides a complete code example that demonstrates summing numeric and associative arrays and shows the resulting output.
Laravel Tech Community
Laravel Tech Community
Function: array_sum(array $array)
Description: The array_sum() function returns the sum of all values in the given array as an integer or floating‑point number.
Parameter:
array – The input array whose values will be summed.
Return value: The sum of all values, returned as an integer or float.
Example:
<?php
$a = array(2, 4, 6, 8);
echo "sum(a) = " . array_sum($a) . "\n";
$b = array("a" => 1.2, "b" => 2.3, "c" => 3.4);
echo "sum(b) = " . array_sum($b) . "\n";
?>Output:
sum(a) = 20
sum(b) = 6.9Written by
Laravel Tech Community
Specializing in Laravel development, we continuously publish fresh content and grow alongside the elegant, stable Laravel framework.
0 followers
Reader feedback
How this landed with the community
Rate this article
Was this worth your time?
Discussion
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.