Warning: file_put_contents(): Only -1 of 54 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
array_pop array_push Arrays PHP Manual array_product (PHP 5 >= 5.1.0) — Calculate the product of values in an array Description number ( $array ) array_product() returns values as integer or f...
Forum und email

array_product

(PHP 5 >= 5.1.0)

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(2468);
echo 
"product(a) = " array_product($a) . "\n";

?>

The above example will output:

product(a) = 384