We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
array_unique - Remove duplicate values from an array
array array_unique( array $array )
array_unqiue() takes an input array and returns a new array without duplicate values. It can handle multidimensional arrays.
array - The input array.
An array without duplicate values.
1.0 and above.