下面電腦高手網小編給大家摘錄一篇關于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);新聞熱點
疑難解答