Restituisce un array contenente valori distinti dell”array dato.
array_distinct(array)
array_distinct(array(1,2,3,2,1)) → array: 1,2,3
–