本文实例讲述了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 读取文本文件并逐行输出该行使用最多的字符与对应次数的方法实例详解的详细内容,更多请关注二当家的素材网其它相关文章!
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群