Codice PHP:
<?php
$valori 
= array(1,2,4,5,2,3,3,6);
$unici array_unique($valori);
sort($unici);
?>