<?php $array = [ "2,2-0-tc", "2-0", "2-0-tc", "3,3-0-sc-v6", "3-0-sc-v6", "3-0sc-v6", "5-0-sc-v8" ]; foreach ($array as $item) { $values = explode(",", $item); foreach ($values as $value) { if (!isset($result[$value])) { $result[$value] = $item; } } } var_export($result);
You have javascript disabled. You will not be able to edit any code.