<?php $data = [ 2 => [ 3, ], 3 => [ 8, ], 4 => [ 5, ], 5 => [ 8, ], 6 => [ 3, 8, ], 7 => [ 2, 5, ], 8 => [ 3, 8, ], ]; $occurrences = []; $mapped = array_map(function (array $values) use (&$occurrences) { $index = serialize($values); if (!array_key_exists($index, $occurrences)) { $occurrences[$index] = 1; return 0; } $occurrences[$index]++; return $occurrences[$index] - 1; }, $data); var_dump($mapped);
You have javascript disabled. You will not be able to edit any code.