实例
<?php function sum( $a,$b,$c,...$d) { array_push($d,$a,$b,$c); return array_product($d); } echo sum(1,2,3,4,5,6); ?>
运行实例 »
点击 "运行实例" 按钮查看在线实例
function是php函数 sum是用户自定义的函数名称
array_push运行函数 函数第一个为数组,后面为值
array_product 计算数组中所有值的乘积
测试结果为720
博客列表 >函数计算参数乘积-19年9月28日
<?php function sum( $a,$b,$c,...$d) { array_push($d,$a,$b,$c); return array_product($d); } echo sum(1,2,3,4,5,6); ?>
点击 "运行实例" 按钮查看在线实例
function是php函数 sum是用户自定义的函数名称
array_push运行函数 函数第一个为数组,后面为值
array_product 计算数组中所有值的乘积
测试结果为720