PHP array_product() 函数 PHP array_pop() 函数 PHP array_push() 函数 PHP array_product() 函数 实例 计算并返回数组的乘积: <?php $a=array(5,5); echo(array_product($a)); ?> 定义和用法 array_product() 函数计算并返回数组的乘积。 语法 array_product( _array_ ) 参数 描述 _array_ 必需。规定数组。 技术细节 返回值: 返回一个整数或者浮点数的乘积。 PHP 版本: 5.1.0+ 更新日志: 自 PHP 5.3.6 起,空数组的乘积为 1。在 PHP 5.3.6 之前,空数组的乘积为 0。 实例 1 计算并返回数组的乘积: <?php $a=array(5,5,2,10); echo(array_product($a)); ?> PHP array_pop() 函数 PHP array_push() 函数