在某些时候需要计算数组中所有元素的乘积。执行此操作的最基本方法是遍历所有元素并计算乘积,但是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 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 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