怎么把循环中的内容逐个相加
程序员文章站
2022-05-21 17:42:08
...
如何把循环中的内容逐个相加
大概意思就是把每一次for循环中的$total_price进行相加,最后得出来一个总的$big_total_price,这样的话应该怎么写?
------解决方案--------------------
$big_total_price=0;
for($counter=$i; $counter>=1; $counter--){
$weight="weight_$counter";
$single_price="single_price_$counter";
$big_total_price+="$_POST[$weight]"*"$_POST[$single_price]";
$id="id_$counter";
}
for($counter=$i; $counter>=1; $counter--){
$weight="weight_$counter";
$single_price="single_price_$counter";
$total_price="$_POST[$weight]"*"$_POST[$single_price]";
$id="id_$counter";
}
$big_total_price=$total_price+.......;
大概意思就是把每一次for循环中的$total_price进行相加,最后得出来一个总的$big_total_price,这样的话应该怎么写?
------解决方案--------------------
$big_total_price=0;
for($counter=$i; $counter>=1; $counter--){
$weight="weight_$counter";
$single_price="single_price_$counter";
$big_total_price+="$_POST[$weight]"*"$_POST[$single_price]";
$id="id_$counter";
}
相关文章
相关视频
- 详解win10下PHP的安装配置(以php5.6为...
- php Swoole实现毫秒定时计划任务(详解)
- 【DTM】PHP协程客户端v0.1 beta版本发...
- PHP中类的理解和应用[一]_PHP教程
- 怎么把循环中的内容逐个相加
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论