首頁 > 後端開發 > php教程 > PHP實作計算檔案或陣列中單字出現頻率的方法

PHP實作計算檔案或陣列中單字出現頻率的方法

墨辰丷
發布: 2023-03-27 12:10:01
原創
1359 人瀏覽過

這篇文章主要介紹了PHP實現計算檔或陣列中單字出現頻率的方法,給出了2個統計單字頻率的範例,涉及php正規、陣列操作及字串遍歷等相關技巧,需要的朋友可以參考下

具體如下:

如果是小文件,可以一次讀入到數組中,使用方便的數組計數函數進行詞頻統計(假設文件中內容都是空格隔開的單字):

<?php
$str = file_get_contents("/path/to/file.txt"); //get string from file
preg_match_all("/\b(\w+[-]\w+)|(\w+)\b/",$str,$r); //place words into array $r - this includes hyphenated words
$words = array_count_values(array_map("strtolower",$r[0])); //create new array - with case-insensitive count
arsort($words); //order from high to low
print_r($words)
登入後複製

如果是大文件,讀入記憶體就不合適了,可以採用以下方法:

<?php
$filename = "/path/to/file.txt";
$handle = fopen($filename,"r");
if ($handle === false) {
 exit;
}
$word = "";
while (false !== ($letter = fgetc($handle))) {
 if ($letter == &#39; &#39;) {
  $results[$word]++;
  $word = "";
 }
 else {
  $word .= $letter;
 }
}
fclose($handle);
print_r($results);
登入後複製

相關推薦:

php數組函數之array_unique()去除數組中重複值

#php數組函數shuffle()與array_rand()隨機函數使用步驟詳解

php數組尋找函數使用方法匯總

#

以上是PHP實作計算檔案或陣列中單字出現頻率的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板