PHP Array 函數手冊
PHP array_product() 函數計算數組中所有值的乘積
array_product ( $array );
它以整數或浮點數返回數組中值的乘積。
array(必填)
它指定一個數組。
它返回數組中值的乘積。
計算數組中所有值的乘積
<?php $input = array(5,6,3); print_r(array_product($input)); ?>
輸出結果:
90