Home>Article>Backend Development> How to find the average of an array in php

How to find the average of an array in php

青灯夜游
青灯夜游 Original
2022-04-29 20:03:20 6344browse

Steps to calculate the average value of php array: 1. Use array_sum() to calculate the sum of all elements in the array, the syntax is "array_sum($arr)"; 2. Use count() to get the number of elements in the array , syntax "count($arr)"; 3. Use the "elements and/number of elements" statement to calculate the array average.

How to find the average of an array in php

The operating environment of this tutorial: windows7 system, PHP8.1 version, DELL G3 computer

php array averaging Value method

Implementation idea:

  • Calculate the sum of all elements in the array

  • Get The number of elements in the array, that is, the length of the array

  • Divide the sum of elements by the length of the array to calculate the average

Implementation steps :

  • Use array_sum() to calculate the sum

  • Use count() to calculate the number of elements

  • Use the "/" operator to find the average, the syntax is "elements and/number of elements"

Implementation example:

"; $len=count($arr); echo "数组长度:".$len."
"; $average=$sum/$len; echo "数组平均值:".$average."
"; ?>

How to find the average of an array in php

Recommended learning: "PHP video tutorial"

The above is the detailed content of How to find the average of an array in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn