时间:2021-07-01 10:21:17 帮助过:18人阅读
<?php function summation ($count) { if ($count != 0) : return $count + summation($count-1); endif; } $sum = summation(10); print "Summation = $sum"; ?>
希望本文所述对大家的php程序设计有所帮助。
< 上一篇
php输出xml属性的方法_PHP
下一篇 >
php在数组中查找指定值的方法_PHP
记住我的登录 忘记密码?
登录
我已阅读用户协议及版权声明
注册