<?php $values = [10, 10, 5, 8]; $found = []; foreach ($values as $index => $value) { if (!isset($found[$value])) { $found[$value] = $index; } else { unset($values[$index], $values[$found[$value]]); } } var_export($values);
You have javascript disabled. You will not be able to edit any code.