Syntax
array_product ( $array ); |
Definition and Usage
It returns the product of values in an array as an integer or float. That is it multiplies all the values and return final result.
Paramters
Parameter | Description |
---|---|
array | Required. Specifies an array. |
Return Values
Product of values in an array.
Example
Try out following example:
<?php $array=array(5,6,3); print_r(array_product($array)); ?> |
This will produce following result:
180 |
No comments:
Post a Comment