I have an array like the following one:
Array
(
[0] => Array
(
[0] => Array
(
[0] => 2
[1] => 0
)
[1] => Array
(
[0] => 3
[1] => 1
)
[1] => Array
(
[0] => Array
(
[0] => 3
[1] => 1
)
[1] => Array
(
[0] => 4
[1] => 2
)
[2] => Array
(
[0] => 5
[1] => 2
)
)
[2] => Array
(
[0] => Array
(
[0] => 2
[1] => 1
)
[1] => Array
(
[0] => 5
[1] => 2
)
)
...
)
I'd like to remove the duplicate fields and have unique values inside each array() that composes the "big array".
For example: the $array[0] has inside the value (3,1) ($array[0][1]), this value (2,0) is also found in $array[1][0], so I want to delete both of them.
The array I've posted above should return the following one after that procedure
Array
(
[0] => Array
(
[0] => Array
(
[0] => 2
[1] => 0
)
[1] => Array
(
[1] => Array
(
[0] => 4
[1] => 2
)
)
[2] => Array
(
[0] => Array
(
[0] => 2
[1] => 1
)
)
...
)
Is there any useful function that helps? How can I solve this?