search for in the  
<array_poparray_push>
Last updated: Thu, 19 May 2005

array_product

(no version information, might be only in CVS)

array_product --  Calculate the product of values in an array

Description

number array_product ( array array )

array_product() returns the product of values in an array as an integer or float.

Example 1. array_product() examples

<?php

$a
= array(2, 4, 6, 8);
echo
"product(a) = " . array_product($a) . "\n";

?>

The above example will output:

product(a) = 384



User Contributed Notes
array_product
There are no user contributed notes for this page.

<array_poparray_push>
 Last updated: Thu, 19 May 2005
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: The Server Pages
Last updated: Thu May 19 17:35:34 2005 CDT