Calculate the product of values in an array
$array
array_product returns the product of values in an array.
array
The array.
Returns the product as an integer or float.
Example #1 array_product examples
<?php$a = array(2, 4, 6, 8);echo "product(a) = " . array_product($a) . "\n";echo "product(array()) = " . array_product(array()) . "\n";?>
The above example will output:
product(a) = 384 product(array()) = 1