PHP Function To Calculate The Mean Value Of An Array Of Numbers

function mean($numbers) {
  $sum = 0;
  $count = count($numbers);
  foreach ($numbers as $number) {
    $sum += $number;
  }
  return $sum / $count;
}

$numbers = [1, 2, 3, 4, 5];
$mean = mean($numbers);

echo "The mean value of the numbers is: " . $mean;

 

Add new comment

The content of this field is kept private and will not be shown publicly.
CAPTCHA
3 + 11 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.