Skip to content
Advertisement

Remove A|B duplicates from associative array in Laravel

I have an associative array containing entries that are virtually the same, except the key-value pairs are swapped:

JavaScript

I stored the array in a Laravel collection and tried using ->unique()

JavaScript

but the output matches the array feeding in.

How can I remove duplicates like this from an array so each pair is unique no matter if the keys are swapped?

The desired output is:

JavaScript

Update: What I’ve tried so far that seems to be working…

JavaScript

Advertisement

Answer

Sort the pairs and concatenate the values for a unique key, then filter based on the result.

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement