array_product
Calculate the product of all values in the array
array_product()
function calculates and returns the product of the array.
Calculate and return the product of the array:
<?php $a = array ( 5 , 5 ) ; echo ( array_product ( $a ) ) ; ?>
Try it yourself
Calculate and return the product of the array:
<?php $a = array ( 5 , 5 , 2 , 10 ) ; echo ( array_product ( $a ) ) ; ?>
Try it yourself
array_product ( array )
parameter | describe |
---|---|
array | Required. Specify array. |