array_product() 函数计算并返回数组中所有值的乘积。
array_product(array)
<?php $a=array(5,5); echo(array_product($a)); ?>
输出:
25