PHP 数组函数
PHP array_product() 函数 返回数组中所有元素的乘积。
array_product()
array_product(array)
返回乘积值。
<?php $a=array(5,5); echo(array_product($a)); ?>