0
我試圖在PHP中找到字符串中最常用的字。歌詞文件是一串歌詞。如何在字符串中找到最常用的字PHP
//display the most used word in the lyrics file
$wordCount = str_word_count($lyrics);
$wordCountArray = array();
foreach($wordCount as $word){
if(!array_key_exists($word, $wordCountArray)){
$wordCountArray[$word] = 1;
}else{
$wordCountArray[$word] += 1;
}
}
arsort($wordCountArray);
print_r($wordCountArray[0]);
我得到這段代碼的錯誤,我想知道什麼是不工作。我需要實際的單詞而不是數字。
什麼是你的問題? – Marcel
這可能取決於'$ lyrics'是什麼。你可能需要提供一個例子。 –
http://php.net/manual/en/function.substr-count.php可能會有所幫助 – meen