How can I remove duplicate values from an array in PHP?
Use array_unique().
Example:
$array = array(1, 2, 2, 3); $array = array_unique($array); // Array is now (1, 2, 3)
2.1m questions
2.1m answers
60 comments
57.0k users