<?php $array = [ [ 'url' => 'http://domain1.com', 'domain' => 'domain1.com', 'values' => ['character_length' => 25, 'word_count' => 7] ], [ 'url' => 'http://domain2.com', 'domain' => 'domain2.com', 'values' => ['character_length' => 30, 'word_count' => 7] ] ]; var_export( array_reduce( $array, function($result, $row) { $row['values']['character_length'] += ($result['values']['character_length'] ?? 0); $row['values']['word_count'] += ($result['values']['word_count'] ?? 0); return $row; } ) );
You have javascript disabled. You will not be able to edit any code.