The below program is to find the product of elements in an array. The PHP echo statement is used to output the result on the screen. An array is a single variable which can store multiple values at a time.
array_product() function in PHP
Example<!DOCTYPE html>
<html>
<body>
<?php
$numbers=array("10","20","30","40");
echo "Product of array elements is: ";
echo array_product($numbers);
?>
</body>
</html>
Output:Product of array elements is: 240000