I have two arrays with this structure
array1 = Array(0=>Array(4, 7, 0, 11), 1=> Array(5,7,6,18));
array2 = Array(0=>Array(5,1,7,13), 1=>Array(9,1,6,16));
I tried to calculate sum of this array by element like this => 4 + 5 = 9;
Array(0=>Array(9,8,7,24), 1=>Array(14, 8, 12, 34));