<?php $variavel = array(); $variavel[0][0] = 12; $variavel[0][6] = 5; $variavel[0][6] = 5; $variavel[9][6] = 10; $soma = array_reduce($variavel, function($carry, $item){ $carry = $carry + $item[6]; return $carry; }); echo $soma;
You have javascript disabled. You will not be able to edit any code.