Home  >  Article  >  php教程  >  PHP reads the text file and outputs the most used strings and corresponding times in the line line by line.

PHP reads the text file and outputs the most used strings and corresponding times in the line line by line.

PHP中文网
PHP中文网Original
2016-08-23 09:03:281513browse


$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