Open In App

PHP array_sum() Function

Last Updated : 20 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The array_sum() function returns the sum of all the values in an array(one dimensional and associative). It takes an array parameter and returns the sum of all the values in it.

number array_sum ( $array )

Argument
The only argument to the function is the array whose sum needs to be calculated.

Return value
This function returns the sum obtained after adding all the elements together. The returned sum may be integer or float. It also returns 0 if the array is empty.

Examples:

Input : $a = array(12, 24, 36, 48);
        print_r(array_sum($a));
Output :120

Input : $a = array();
        print_r(array_sum($a));
Output :0

In the first example the array calculates the sum of the elements of the array and returns it. In the second example the answer returned is 0 since the array is empty.

Program – 1




<?php
//array whose sum is to be calculated
$a = array(12, 24, 36, 48);
  
//calculating sum
print_r(array_sum($a));
?>


Output:

120

Program – 2




<?php
//array whose sum is to be calculated
$a = array();
  
//calculating sum
print_r(array_sum($a));
?>


Output:

0

Program – 3




<?php
// array whose sum is to be calculated
$b = array("anti" => 1.42, "biotic" => 12.3, "charisma" => 73.4);
  
// calculating sum
print_r(array_sum($b));
?>


Output:

87.12

Thanks to HGaur for providing above examples.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads