Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
Array 
( 
    [Sum_1] => Array 
                ( 
                    [0] => Array 
                        ( 
                            [e] => 1000001 
                            [u] => Test1 
                            [a] => 775.00 
                        ) 
                    [1] => Array 
                        ( 
                            [e] => 26 
                            [u] => Test2 
                            [a] => 555.00 
                        ) 
                ) 
    [Sum_2] => Array 
                ( 
                    [0] => Array 
                        ( 
                            [e] => 1000001 
                            [u] => Test1 
                            [a] => 110.00 
                        ) 
                ) 
    [Sum_3] => Array 
                ( 
                    [0] => Array 
                        ( 
                            [e] => 1000001 
                            [u] => Test1 
                            [a] => 444.00 
                        ) 
                ) 
)  

I want to convert above array to something like below. Do I need to use a foreach or can array_sum do this?

Array 
    ( 
        [Sum_1] => 1330.00
        [Sum_2] => 110.00
        [Sum_3] => 444.00
     )  

(I want to get the sum of element [a] of each section named Sum_1, Sum_2, Sum_3) Thanks for your help!

share|improve this question
what you have tried so far? – diEcho Sep 7 '12 at 4:27
smells like homework... – nageeb Sep 7 '12 at 4:33

2 Answers

You could do like this:

$ret = array_map(function($val) {
  return array_sum(array_map(function($val) {
     return $val['a'];
  }, $val));
}, $array);
share|improve this answer
Beat me to it, I was writing exactly that :) – Mahn Sep 7 '12 at 4:34
@xdazz I was able to do the sums without an array, on the template itself. Thank you anyway. I don't really understand your method. I know what array_map and array_sum do, but can't really understand how they are used in your code? can you explain a bit or direct me to a useful source? Thank you – Thilini IW Sep 7 '12 at 9:52
@ThiliniIW Check how array_map work will be help. array_map — Applies the callback to the elements of the given arrays – xdazz Sep 7 '12 at 10:12

using foreach loop you can try this

$sums=array();
    foreach($ArrayOfSums as $Offset=>$ArrayOfResults){
        foreach($ArrayOfResults as $ResultOffset=>$Result){
            $sums[$Offset]+=$Result["a"];
        }
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.