Source Code:
(back to article)
<?php $values = array("a", "b", "c", "a", "b", "d"); $unique_values = array_unique($values, SORT_REGULAR); print_r($unique_values);
Result:
Report an issue