Array Funzioni
PHP Manual

array_product

(PHP 5 >= 5.1.0)

array_productCalculate the product of values in an array

Descrizione

number array_product ( array $array )

array_product() returns the product of values in an array.

Elenco dei parametri

array

The array.

Valori restituiti

Returns the product as an integer or float.

Log delle modifiche

Versione Descrizione
5.3.6 The product of an empty array is now 1, when before this function would return 0 for an empty array.

Esempi

Example #1 array_product() examples

<?php

$a 
= array(2468);
echo 
"product(a) = " array_product($a) . "\n";
echo 
"product(array()) = " array_product(array()) . "\n";

?>

Il precedente esempio visualizzerĂ :

product(a) = 384
product(array()) = 1


Array Funzioni
PHP Manual