首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

怎么把循环中的内容逐个相加

2013-03-01 
如何把循环中的内容逐个相加for($counter$i $counter1 $counter--){$weightweight_$counter$sing

如何把循环中的内容逐个相加


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";
        }

热点排行