这篇文章主要介绍了PHP读取文本文件并逐行输出该行使用最多的字符与对应次数的方法,涉及php针对文件的读取及字符串遍历、统计、排序等相关操作技巧
本文实例讲述了PHP读取文本文件并逐行输出该行使用最多的字符与对应次数的方法。分享给大家供大家参考,具体如下:
test.txt文件:
PHP代码(读取test.txt文件):
<div class="jb51code">
<pre class="brush:PHP;">
$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);