Home>Article>Backend Development> How to find the average of an array in php
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.
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."
"; ?>
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!