Javascript debugger
Website design
↑
array_product() returns the product of values in an array as an integer or float.
<?php
$a = array(2, 4, 6, 8);
echo "product(a) = " . array_product($a) . "\n";
?>
The above example will output:
product(a) = 384