sorun invictus hocamın yardımıyla hallolmuştur. teşekkürler hocam

$sor = mysql_query("SELECT * FROM filmler");
while($al=mysql_fetch_array($sor)) {
    $oyuncular = $al['oyuncular'];
    $parcala = explode(',', $oyuncular);
    setlocale(LC_ALL, 'tr_TR');
    sort($parcala,SORT_LOCALE_STRING); 
    $say = count($parcala);
    for($i=0; $i<$say; $i++) {
        $oyuncu = trim($parcala[$i]);
        if(preg_match("/^a/i",$oyuncu))
            echo '<a href="oyuncular.php?oyuncu='.$oyuncu.'">'.$oyuncu.'</a><br>';
    }
}