fork(4) download
  1. <?php
  2.  
  3. $text = "Başka, küskün otomobil kaçtı buraya küskün otomobil neden kaçtı
  4. kaçtı buraya, oraya KISMEN @here #there J.J.Johanson hep.
  5. Danny:Where is mom? I don't know! Café est weiß for 2 €uros";
  6.  
  7. $a1= array_count_values(str_word_count($text, 1, 'ÇçÖöŞşİIıĞğÜü@#é߀'));
  8.  
  9. arsort($a1);
  10.  
  11. print_r($a1);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [kaçtı] => 3
    [J] => 2
    [buraya] => 2
    [otomobil] => 2
    [küskün] => 2
    [know] => 1
    [don't] => 1
    [mom] => 1
    [I] => 1
    [weiß] => 1
    [€uros] => 1
    [for] => 1
    [is] => 1
    [est] => 1
    [Café] => 1
    [hep] => 1
    [KISMEN] => 1
    [oraya] => 1
    [neden] => 1
    [@here] => 1
    [#there] => 1
    [Danny] => 1
    [Başka] => 1
    [Johanson] => 1
    [Where] => 1
)