這篇文章主要介紹了PHP讀取文字檔並逐行輸出該行使用最多的字元與對應次數的方法,涉及php針對檔案的讀取及字串遍歷、統計、排序等相關操作技巧
本文實例講述了PHP讀取文字檔案並逐行輸出該行使用最多的字元與對應次數的方法。分享給大家參考,具體如下:
test.txt檔案:
Welcome to our website jb51.net www.jb51.net php asp java jsp
php程式碼(讀取test.txt檔案):
$myfile = fopen("test.txt", "r"); while(!feof($myfile)) { $line_str = fgets($myfile); $str_arr = count_chars($line_str, 1); arsort($str_arr); print_r(chr(key($str_arr)).' is '.current($str_arr).PHP_EOL); } fclose($myfile);
運作結果如下:
e is 5 w is 3 p is 4
以上是php 讀取文字檔案並逐行輸出該行使用最多的字元與對應次數的方法實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!