在某些时候需要计算数组中所有元素的乘积。执行此操作的最基本方法是遍历所有元素并计算乘积,但是PHP为我们提供了内置函数来执行此操作。 array_product()是PHP中的内置函数,用于查找数组中所有元素的乘积。
用法:
array_product($array)
参数:该函数仅使用一个参数$array,该参数指向我们希望获取其元素乘积的输入数组。
返回值:array_product()函数根据数组元素的性质返回整数或浮点值。
例子:
Input : array = (5, 8, 9, 2, 1, 3, 6) Output : 12960 Input : array = (3.2, 4.8, 9.1, 4.36, 1.14) Output : 694.7426304
以下示例程序旨在说明array_product()函数的工作方式:
- 当传递给array_product()函数的数组仅包含整数值时,array_product()函数将返回一个整数值,该整数值等于传递给它的数组所有元素的乘积。
<?php // PHP function to illustrate the use // of array_product() // Return Integer number function Product($array) { $result = array_product($array); return($result); } $array = array(5, 8, 9, 2, 1, 3, 6); print_r(Product($array)); ?>
输出:
12960
- 当传递给array_product()函数的数组包含整数和浮点值时,则array_product()函数将返回一个浮点值,该值等于传递给它的数组所有元素的乘积。
<?php // PHP function to illustrate the use of // array_product() function Product($array) { $result = array_product($array); return($result); } $array = array(3.2, 4.8, 9.1, 4.36, 1.14); print_r(Product($array)); ?>
输出:
694.7426304
参考:
http://php.net/manual/en/function.array-product.php
相关用法
- p5.js sq()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP next()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 PHP | array_product() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。