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.

The headline says it all: Is there a vertical sum function in php that adds a (sub)array value over the entire array, like this:

 // pseudo code that would return the sum of "income" for all days of the year
 // for example
 vertical_sum($array[$day_of_year]["income"]);
share|improve this question

2 Answers

up vote 2 down vote accepted

Native function? Not exactly, but array reduction can help:

$array = array(
    array('income' => 1), //day 1
    array('income' => 3), //day 2, etc
    array('income' => 6),
    array('income' => 7)
);
echo array_reduce($array, function($curr_total, $this_val) {
    return $curr_total + $this_val['income'];
}, 0); //17
share|improve this answer
That's not quite what his array looks like. Your example could just be array_sum($array['sub_arr']). His array is like $arr = array(array('sub_arr' => 1),array('sub_arr' => 3),array('sub_arr' => 6),array('sub_arr' => 7)). – Rocket Hazmat Aug 1 '12 at 14:08
Right you are. See edit. – Utkanos Aug 1 '12 at 14:12
2  
+1, this is probably better than my answer :-) – Rocket Hazmat Aug 1 '12 at 14:25

You could extract the income field from each array, and then use array_sum.

function vertical_sum($array, $key){
    return array_sum(array_map(function($a) use($key){
        return $a[$key];
    }, $array));
}

Then you can call it like:

vertical_sum($array, "income");
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.