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


Posted in PHP onApril 28, 2015

本文实例讲述了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 < count($Lines); $Line++){
    // Trim whitespace for the current line
    $CurrentLine = trim($Lines[$Line]);
    // Skip empty lines
    if ($CurrentLine == '')
      continue;
    // Use the line contents as array key
    $LineKey = $CurrentLine;
    if ($IgnoreCase)
      $LineKey = strtolower($LineKey);
    // Check if the array key already exists,
    // if not add it otherwise increase the counter
    if (!isset($LineArray[$LineKey]))
      $LineArray[$LineKey] = $CurrentLine;    
    else        
      $Duplicates++;
  }
  // Sort the array
  asort($LineArray);
  // Return how many lines got removed
  return implode($NewLine, array_values($LineArray));  
}

使用范例:

// 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程序设计有所帮助。

PHP 相关文章推荐
PHP 学习路线与时间表
Feb 21 PHP
PHP生成UTF8文件的方法
May 15 PHP
PHP提取字符串中的图片地址[正则表达式]
Nov 12 PHP
php文件怎么打开 如何执行php文件
Dec 21 PHP
php实现的Captcha验证码类实例
Sep 22 PHP
php的curl封装类用法实例
Nov 07 PHP
linux中cd命令使用详解
Jan 08 PHP
PHP Laravel 上传图片、文件等类封装
Aug 16 PHP
PHP基于redis计数器类定义与用法示例
Feb 08 PHP
php使用fullcalendar日历插件详解
Mar 06 PHP
thinkphp框架实现路由重定义简化url访问地址的方法分析
Apr 04 PHP
Laravel中Kafka的使用详解
Mar 24 PHP
php实现简单的语法高亮函数实例分析
Apr 27 #PHP
php转换颜色为其反色的方法
Apr 27 #PHP
PHP结合jQuery.autocomplete插件实现输入自动完成提示的功能
Apr 27 #PHP
PHP+jQuery+Ajax实现用户登录与退出
Apr 27 #PHP
php使用cookie实现记住用户名和密码实现代码
Apr 27 #PHP
php使用cookie实现记住登录状态
Apr 27 #PHP
php curl请求信息和返回信息设置代码实例
Apr 27 #PHP
You might like
如何对PHP程序中的常见漏洞进行攻击(上)
2006/10/09 PHP
php带密码功能并下载远程文件保存本地指定目录 修改加强版
2010/05/16 PHP
Symfony数据校验方法实例分析
2015/01/26 PHP
Javascript Global对象
2009/08/13 Javascript
JavaScript高级程序设计 阅读笔记(七) ECMAScript中的语句
2012/02/27 Javascript
如何使用Jquery获取Form表单中被选中的radio值
2013/08/09 Javascript
javascript中的return和闭包函数浅析
2014/06/06 Javascript
jQuery判断checkbox是否选中的3种方法
2014/08/12 Javascript
三种AngularJS中获取数据源的方式
2016/02/02 Javascript
JavaScript中的prototype原型学习指南
2016/05/09 Javascript
分享一个插件实现水珠自动下落效果
2016/06/01 Javascript
Bootstrap前端开发案例二
2016/06/17 Javascript
浅析如何利用angular结合translate为项目实现国际化
2016/12/08 Javascript
HTML5+Canvas调用手机拍照功能实现图片上传(下)
2017/04/21 Javascript
详解Vue组件之间的数据通信实例
2017/06/17 Javascript
jQuery中图片展示插件highslide.js的简单dom
2018/04/22 jQuery
jquery使用FormData实现异步上传文件
2018/10/25 jQuery
使用Node.js写一个代码生成器的方法步骤
2019/05/10 Javascript
VuePress 中如何增加用户登录功能
2019/11/29 Javascript
微信小程序个人中心的列表控件实现代码
2020/04/26 Javascript
vue 解决uglifyjs-webpack-plugin打包出现报错的问题
2020/08/04 Javascript
[06:35]2014DOTA2国际邀请赛 老男孩梦圆西雅图中国军团世界最强
2014/07/22 DOTA
[00:32]2018DOTA2亚洲邀请赛VG出场
2018/04/03 DOTA
Python多线程编程(三):threading.Thread类的重要函数和方法
2015/04/05 Python
对于Python的框架中一些会话程序的管理
2015/04/20 Python
Python抽象和自定义类定义与用法示例
2018/08/23 Python
Python实战之制作天气查询软件
2019/05/14 Python
Python tkinter之Bind(绑定事件)的使用示例
2021/02/05 Python
巴西独家产品和现场演示购物网站:Shoptime
2019/07/11 全球购物
serialVersionUID具有什么样的特征
2014/02/20 面试题
总经理助理的八要求
2013/11/12 职场文书
中学生纪念九一八事变演讲稿
2014/09/14 职场文书
高三物理教学反思
2016/02/20 职场文书
pycharm2021激活码使用教程(永久激活亲测可用)
2021/03/30 Python
详解如何在Canvas中添加事件的方法
2021/04/17 Javascript
Redis入门基础常用操作命令整理
2022/06/01 Redis