Home  >  Article  >  php教程  >  PHP读取文本文件并逐行输出该行使用最多的字符串及对应次数

PHP读取文本文件并逐行输出该行使用最多的字符串及对应次数

PHP中文网
PHP中文网Original
2016-05-22 17:22:27919browse

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);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn