php删除文本文件中重复行的方法_PHP
程序员文章站
2022-05-20 16:48:26
...
本文实例讲述了php删除文本文件中重复行的方法。分享给大家供大家参考。具体分析如下:
这个php函数用来删除文件中的重复行,还可以指定是否忽略大小写,和指定换行符
/** * 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); $Content = RemoveDuplicatedLinesByString($Content, $IgnoreCase, $NewLine); // Is the file writeable? if (!is_writeable($Filepath)){ $ErrorMsg = 'RemoveDuplicatedLines error: '; $ErrorMsg .= 'The given file ' . $Filepath . ' is not writeable!'; die($ErrorMsg); } // Write the new file $FileResource = fopen($Filepath, 'w+'); fwrite($FileResource, $Content); fclose($FileResource); } /** * RemoveDuplicatedLinesByString * This function removes all duplicated lines of the given string. * * @param string * @param bool * @return string */ function RemoveDuplicatedLinesByString($Lines, $IgnoreCase=false, $NewLine="\n"){ if (is_array($Lines)) $Lines = implode($NewLine, $Lines); $Lines = explode($NewLine, $Lines); $LineArray = array(); $Duplicates = 0; // Go trough all lines of the given file for ($Line=0; $Line使用范例:
// Example 1 // Removes all duplicated lines of the file definied in the first parameter. $RemovedLinesCount = RemoveDuplicatedLines('test.txt'); print "Removed $RemovedLinesCount duplicate lines from the test.txt file."; // Example 2 (Ignore case) // Same as above, just ignores the line case. RemoveDuplicatedLines('test.txt', true); // Example 3 (Custom new line character) // By using the 3rd parameter you can define which character // should be used as new line indicator. In this case // the example file looks like 'foo;bar;foo;foo' and will // be replaced with 'foo;bar' RemoveDuplicatedLines('test.txt', false, ';');希望本文所述对大家的php程序设计有所帮助。
上一篇: js 中将多个逗号替换为一个逗号的代码_javascript技巧
下一篇: 查询数据排名情况SQL
推荐阅读
-
php 面向对象中的魔术方法_PHP教程
-
PHP模板引擎Smarty之配置文件在模板变量中的使用方法示例,模板smarty
-
php中header函数参数的Cache-control的使用方法
-
php实现删除指定目录下相关文件的方法_PHP
-
PHP模板引擎Smarty中变量的使用方法示例,模板smarty
-
深入解读php中关于抽象(abstract)类和抽象方法的问题分析
-
PHP中的日期加减方法示例,php日期示例
-
mysql - php中数据库pdo的exec方法返回影响行数的问题
-
在启动php时,无法启动此程序,因为计算机中丢失MSVCR110.dll的解决方法
-
php+mysqli实现批量执行插入、更新及删除数据的方法,phpmysqli