<?php $collection = array( Array ( 'one' => 10, 'two' => 20, 'three' => 50, 'four' => 80, 'five' => 100 ), Array ( 'three' => 20, 'five' => 20, 'six' => 100, 'seven' => 10 ), Array ( 'one' => 30, 'three' => 30, 'five' => 10, 'eight' => 10 )); Foreach($collection[0] as $key => $val){ $array = array_column($collection, $key); If(count($array) == count($collection)){ $avg[$key] = array_sum($array)/count($array); } } Var_dump($avg);
You have javascript disabled. You will not be able to edit any code.