Source Code:
(back to article)
<?php $numbers = array(1, 2, 3, 4, 5); $product = array_product($numbers); echo $product; ?>
Result:
Report an issue