PHP Programing language

adplus-dvertising
array_product() Function in PHP
Previous Home Next
adplus-dvertising

array_product()

The array_product() function calculates and returns the product of an array.

Syntax:
array_product(array)

In above syntax, "array" specifies an array

Example:

<?php
$array=array(4,5,8,10);
echo(array_product($array));
?>

Output:

1600

Previous Home Next