本文實例講述了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文件操作總結》、《php字符串(string)用法總結》、《PHP常用遍歷算法與技巧總結》、《php正則表達式用法總結》、《PHP運算與運算符用法總結》、《PHP基本語法入門教程》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。