<?php $array = [ ['name' => 'SMITH', 'status' => 'Incomplete', 'count' => 2], ['name' => 'SMITH', 'status' => 'Complete', 'count' => 2], ['name' => 'HUGHES', 'status' => 'Incomplete', 'count' => 3], ['name' => 'HUGHES', 'status' => 'Complete', 'count' => 1], ]; $result = []; foreach ($array as $row) { $result[$row['name']][$row['status']] = $row['count']; } var_export(array_values($result));
You have javascript disabled. You will not be able to edit any code.