首页 > 网站 > 建站经验 > 正文

【PHP教程】php删除文本文件中重、复行的方法

2019-11-02 15:39:44
字体:
来源:转载
供稿:网友

下面电脑高手网小编给大家摘录一篇关于php删除文本文件中重复行的方法,非常的简单实用,有需要的小伙伴可以参考下,希望可以给正在学习PHP知识的朋友一些帮助或建议。

   php删除文本文件中重复行的方法

        本文实例讲述了php删除文本文件中重复行的方法。分享给大家供大家参考。具体分析如下:

  这个php函数用来删除文件中的重复行,还可以指定是否忽略大小写,和指定换行符

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 /** * RemoveDuplicatedLines * This function removes all duplicated lines of the given text file. * * @param string * @param bool * @return string */ function RemoveDuplicatedLines($Filepath, $IgnoreCase=false, $NewLine="n"){ if (!file_exists($Filepath)){ $ErrorMsg = 'RemoveDuplicatedLines error: '; $ErrorMsg .= 'The given file ' . $Filepath . ' does not exist!'; die($ErrorMsg); } $Content = file_get_contents($Filepath);
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表