codice:function sort_strano($a, $b) { if ($a == $b) { return 0; } return (substr($a,0,6) < substr($b,0,6)) ? -1 : 1; } $temp=array("006888AA","006888GB","006749","006750"); usort($temp, "sort_strano"); echo "<pre>\n"; print_r($temp); echo "</pre>\n";