使用foreach中的每个循环在现有数组中创建新数组

时间:2015-07-24 03:57:43

标签: php arrays foreach

我有一个foreach循环,对于每个养老金ID,我使用与该ID相对应的养老金金额,并将通货膨胀率应用于30年以上的养老金价值。每个人总会有不同数量的独特养老金。

在foreach循环中,我能够运行它并让它随着时间的推移产生养老金金额的未来值,迭代每年增加的值。我遇到的问题是,对于每个养老金ID,它将新的养老金值添加到名称数组中。

例如,如果个人有4个养老金,则在一个数组中产生120个数组值。我想要的是4(或者有多少养老金)数组,每个独特的养老金值都在自己的数组中。我的目标是将每个阵列的每个养老金年度加在一起,并为每个人提供每年的养老金总额。

实施例。
pension 1 array([1] => 100 [2] => 200 [3] => 300…….
pension 2 array([1] => 200 [2]=> 300 [3] => 400……

(然后根据键将每个数组加在一起)
Total pension amount array([1] => 300 [2] => 500 [3] => 700

我一直在尝试各种各样的事情,但无法找到解决方案,我认为foreach可能无法实现这一目标。

要回顾我需要的解决方案,在每次传递foreach之后,我需要使用新值创建一个新数组,而不是将它们添加到现有数组中。

任何帮助都会很棒。

这是我现有的代码。

注意:一切都进入$ pension []

foreach($pen_start as $key => $value){

    if($value < $age){
        if($pen_cola[$key] == 'Yes'){
            $i = 0;
            $a = $age;
            $previous = $pen_amount[$key];
            while($i <= 29 ){
            $pension[] = str_replace(',','',number_format(($previous*1.02),2));
            $previous = $previous*1.02;
            $i++;
            $a++;
            };
            // if yes end
        } else if($pen_cola[$key] == 'No' || $pen_cola[$key] == ''){

            $i = 0;
            $a = $age;
            $previous = $pen_amount[$key];
            while($i <= 29 ){

            $pension[] = str_replace(',','',number_format(($previous),2));
            $previous = $previous;
            $i++;
            $a++;
            };
        } // if no end
    } // if older end
    else if($value > $age){
        if($pen_cola[$key] == 'Yes'){
            $i = 0;
            $a = $age;
            $previous = 0;
            while($i <= 29 ){

                if($a < $value){
                    $amount = 0;
                }else if($previous == 0){
                    $amount = $pen_amount[$key];}
                    else {$amount = $previous;}

            $pension[] = str_replace(',','',number_format(($amount*1.02),2));
            $previous = $amount*1.02;
            $i++;
            $a++;
            };
            // end if yes
        }  else if($pen_cola[$key] == 'Yes'){
            $i = 0;
            $a = $age;
            $previous = 0;
            while($i <= 29 ){

                if($a < $value){
                    $amount = 0;
                }else if($previous == 0){
                    $amount = $pen_amount[$key];}
                    else {$amount = $previous;}

            $pension[] = str_replace(',','',number_format(($amount),2));
            $previous = $amount;
            $i++;
            $a++;
            };
        } //end if no
    } // if younger end
} // end foreach

1 个答案:

答案 0 :(得分:0)

当你在$ pension中使用密钥时,也许你的问题已经解决了:

$pensions[$key][] = str_replace(',','',number_format(($amount),2));

如果我理解正确,你想这样做:

$result = array(); //or in php 5.5+ []
foreach($pensions as $pension){
   foreach($pension as $key => $amount){
       if(!isset($result[$key])){
          $result[$key] = 0;
       }
       $result[$key] += $amount;
   }
}