【函数功能】
该函数返回数组中所有值的乘积。
【函数语法】
array_product (array $array)
【参数说明】
$array:必需,数组。
【演示程序】
<?php
/**
* array_product (array $array)
* **/
$array = array(1,2,3,4,5,'c'=>1.09);
echo array_product($array);
?>
【输出结果】
130.8
【特别注意】
1.如果所有值都是整数,则返回一个整数值。如果其中有一个或多个值是浮点数,则返回浮点数。
2.PHP 版本:5.1.0+。
3.自 PHP 5.3.6 起,空数组的乘积为 1。在 PHP 5.3.6 之前,空数组的乘积为 0。。
【原版定义】
/**
* Calculate the product of values in an array
* @link http://www.php.net/manual/en/function.array-product.php
* @param array array <p>
* The array.
* </p>
* @return number the product as an integer or float.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/1222/170.html