Compzone.Org :: Podręcznik PHP :: array_product
Pytania w drugiej edycji Testu PHP powinny być:
Trudniejsze
Łatwiejsze
Skomplikowane
Na myślenie
Do liczenia
Sonda Wyniki

Add to Google

array_product

(PHP 5 >= 5.1.0RC1)

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.

Przykład 1. array_product() examples

<?php

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

?>

Powyższy przykład wyświetli:

product(a) = 384
Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!