Previous | Home | Next |
array_product()
The array_product() function calculates and returns the product of an array.
Syntax:array_product(array)
In above syntax, "array" specifies an array
Example:
<?php $array=array(4,5,8,10); echo(array_product($array)); ?>
Output:
Previous | Home | Next |