PHP method to calculate the sum and product of values ​​in an array (with functions)

怪我咯
Release: 2023-03-08 08:34:01
Original
1731 people have browsed it

This article mainly introduces the method of calculating the sum and product of values ​​in an array in PHP. It analyzes the functions and usage of array_sum and array_product functions in detail in the form of examples. Friends in need can refer to it

The example in this article describes how PHP calculates the sum and product of values ​​in an array. Share it with everyone for your reference, the details are as follows:

1. Overview:

array_sum() function is used to calculate the sum of all values ​​in the array.
array_product() function is used to calculate the product of all values ​​in an array.

2. Usage example:

array_sum()

PHP array_sum() function is used to calculate all values ​​in the array The sum of , returns the calculation result as an integer or floating point number, and non-numeric units will be treated as 0.

Syntax:

number array_sum( array array )
Copy after login

Example:

Copy after login

array_product()

PHP array_product() function is used to calculate all items in an array The product of values, returns the calculation result as an integer or floating point number, non-numeric units will be treated as 0.

Grammar:

number array_product( array array )
Copy after login

Example:

Copy after login


The above is the detailed content of PHP method to calculate the sum and product of values ​​in an array (with functions). For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!