array_product()
(funzione PHP) calcola e restituisce il prodotto degli elementi di un array.
tips&tricks
Sintassi
array_product($array)
parametro | descrizione |
---|---|
$array | L’array da processare |
Esempi
$array = array(1,2,3); echo array_product($array); // 6
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment