实例
<?php function sum($a,$b,$c,...$he){ //添加到数组中 array_unshift($he,$a,$b,$c); //求积函数 return array_product($he); } echo sum(1,2,3,4,5,6,7,8,9); ?>
运行实例 »
点击 "运行实例" 按钮查看在线实例
博客列表 >9月28日作业:乘积函数!
<?php function sum($a,$b,$c,...$he){ //添加到数组中 array_unshift($he,$a,$b,$c); //求积函数 return array_product($he); } echo sum(1,2,3,4,5,6,7,8,9); ?>
点击 "运行实例" 按钮查看在线实例