搜索和替换文件或目录的一个好类--很实用


Posted in PHP onOctober 09, 2006

这是个非常有用的程序,可以对文本文件进行特定的搜索,并以特定的文字替换指定的文字,举个例子说如果我这篇文章里有一个字全部打错了,有几十处,要一一找出来修改是件很麻烦的事,用下面这个就可以轻松搞定。--teaman.oso.com.cn
类文件 search_replace.inc
<?php

        class search_replace{

                var $find;
                var $replace;
                var $files;
                var $directories;
                var $include_subdir;
                var $ignore_lines;
                var $ignore_sep;
                var $occurences;
                var $search_function;
                var $last_error;

        //以下进行函数定义和设置

                function search_replace($find, $replace, $files, $directories = '', $include_subdir = 1, $ignore_lines = array()){

                        $this->find            = $find;
                        $this->replace         = $replace;
                        $this->files           = $files;
                        $this->directories     = $directories;
                        $this->include_subdir  = $include_subdir;
                        $this->ignore_lines    = $ignore_lines;

                        $this->occurences      = 0;
                        $this->search_function = 'search';
                        $this->last_error      = '';

                }

        /***************************************
        ** Accessor for retrieving occurences.
        ***************************************/
                function get_num_occurences(){
                        return $this->occurences;
                }

        //获取最后的错误
                function get_last_error(){
                        return $this->last_error;
                }

        //设置FIND变量
                function set_find($find){
                        $this->find = $find;
                }

        //设置replace变量
                function set_replace($replace){
                        $this->replace = $replace;
                }

        //设置FILE变量
                function set_files($files){
                        $this->files = $files;
                }

        //设置目录变量
                function set_directories($directories){
                        $this->directories = $directories;
                }

        //设置目录变量 set_include_subdir
                function set_include_subdir($include_subdir){
                        $this->include_subdir = $include_subdir;
                }

        //设置ignore_lines变量
                function set_ignore_lines($ignore_lines){
                        $this->ignore_lines = $ignore_lines;
                }

        //确定是哪一种搜索方式
                function set_search_function($search_function){
                        switch($search_function){
                                case 'normal': $this->search_function = 'search';
                                               return TRUE;
                                               break;

                                case 'quick' : $this->search_function = 'quick_search';
                                               return TRUE;
                                               break;

                                case 'preg'  : $this->search_function = 'preg_search';
                                               return TRUE;
                                               break;

                                case 'ereg'  : $this->search_function = 'ereg_search';
                                               return TRUE;
                                               break;

                                default      : $this->last_error      = 'Invalid search function specified';
                                               return FALSE;
                                               break;
                        }
                }

        //以下为搜索和替换程序的主文件
                function search($filename){

                        $occurences = 0;
                        $file_array = file($filename);

                        for($i=0; $i<count($file_array); $i++){
                                $continue_flag = 0;
                                if(count($this->ignore_lines) > 0){
                                        for($j=0; $j<count($this->ignore_lines); $j++){
                                                if(substr($file_array[$i],0,strlen($this->ignore_lines[$j])) == $this->ignore_lines[$j]) $continue_flag = 1;
                                        }
                                }
                                if($continue_flag == 1) continue;
                                $occurences += count(explode($this->find, $file_array[$i])) - 1;
                                $file_array[$i] = str_replace($this->find, $this->replace, $file_array[$i]);
                        }
                        if($occurences > 0) $return = array($occurences, implode('', $file_array)); else $return = FALSE;
                        return $return;

                }

        //使用quick(快速)搜索方法时,没有igonre_lines功能
                function quick_search($filename){

                        clearstatcache();

                        $file       = fread($fp = fopen($filename, 'r'), filesize($filename)); fclose($fp);
                        $occurences = count(explode($this->find, $file)) - 1;
                        $file       = str_replace($this->find, $this->replace, $file);

                        if($occurences > 0) $return = array($occurences, $file); else $return = FALSE;
                        return $return;

                }

        //preg搜索方法不支持ignore_lines
                function preg_search($filename){

                        clearstatcache();

                        $file       = fread($fp = fopen($filename, 'r'), filesize($filename)); fclose($fp);
                        $occurences = count($matches = preg_split($this->find, $file)) - 1;
                        $file       = preg_replace($this->find, $this->replace, $file);

                        if($occurences > 0) $return = array($occurences, $file); else $return = FALSE;
                        return $return;

                }

        //ereg搜索方法也不支持ignore_lines
                function ereg_search($filename){

                        clearstatcache();

                        $file = fread($fp = fopen($filename, 'r'), filesize($filename)); fclose($fp);

                        $occurences = count($matches = split($this->find, $file)) -1;
                        $file       = ereg_replace($this->find, $this->replace, $file);

                        if($occurences > 0) $return = array($occurences, $file); else $return = FALSE;
                        return $return;

                }

        //写新文件
                function writeout($filename, $contents){

                        if($fp = @fopen($filename, 'w')){
                                fwrite($fp, $contents);
                                fclose($fp);
                        }else{
                                $this->last_error = 'Could not open file: '.$filename;
                        }

                }

        //由do_search调用,排出所有要搜索的文件
                function do_files($ser_func){
                        if(!is_array($this->files)) $this->files = explode(',', $this->files);
                        for($i=0; $i<count($this->files); $i++){
                                if($this->files[$i] == '.' OR $this->files[$i] == '..') continue;
                                if(is_dir($this->files[$i]) == TRUE) continue;
                                $newfile = $this->$ser_func($this->files[$i]);
                                if(is_array($newfile) == TRUE){
                                        $this->writeout($this->files[$i], $newfile[1]);
                                        $this->occurences += $newfile[0];
                                }
                        }
                }

        //由do_search()调用,排出所有要搜索的目录
                function do_directories($ser_func){
                        if(!is_array($this->directories)) $this->directories = explode(',', $this->directories);
                        for($i=0; $i<count($this->directories); $i++){
                                $dh = opendir($this->directories[$i]);
                                while($file = readdir($dh)){
                                        if($file == '.' OR $file == '..') continue;

                                        if(is_dir($this->directories[$i].$file) == TRUE){
                                                if($this->include_subdir == 1){
                                                        $this->directories[] = $this->directories[$i].$file.'/';
                                                        continue;
                                                }else{
                                                        continue;
                                                }
                                        }

                                        $newfile = $this->$ser_func($this->directories[$i].$file);
                                        if(is_array($newfile) == TRUE){
                                                $this->writeout($this->directories[$i].$file, $newfile[1]);
                                                $this->occurences += $newfile[0];
                                        }
                                }
                        }
                }

        //调用这个do_search()就可以开始对文件或目录进行搜索
                function do_search(){
                        if($this->find != ''){
                                if((is_array($this->files) AND count($this->files) > 0) OR $this->files != '') $this->do_files($this->search_function);
                                if($this->directories != '')                                       $this->do_directories($this->search_function);
                        }
                }

        } // End of class
?>

//下面是调用该类的例子说明,请存为example.php

<?php

        include('search_replace.inc');  //将文件包括进来

//建立新物件,设置搜索条件、最后返回搜索结果

        $sr = new search_replace('asp', 'php', array('test.txt')); //调用搜索与替换
        $sr->set_search_function('quick');   //设置搜索条件
        $sr->do_search();

        $sr->set_find('another');
        $sr->do_search();

//下面是定制的返回信息
        header('Content-Type: text/plain');
        echo '发现和替换以下几个地方: '.$sr->get_num_occurences()."\r\n";
        echo '啊,错误发生如下.............: '.$sr->get_last_error()."\r\n";
?>

//将以下文字存为test.txt,注意text.txt必须是可读可写的
"我非常喜欢asp,它简单易学,功能强,听说asp已经占了大半市场,asp真好。"

此时,如果您打开exampe.php 就会出现下面这些:
发现和替换以下几个地方:3
啊,错误发生如下..........:      
查看test.txt文件,果然出现asp的地方被php替换了。

PHP 相关文章推荐
一些php技巧与注意事项分析
Feb 03 PHP
thinkphp的c方法使用示例
Feb 24 PHP
php中explode函数用法分析
Nov 15 PHP
Yii框架在页面输出执行sql语句以方便调试的实现方法
Dec 24 PHP
laravel 5 实现模板主题功能
Mar 02 PHP
php打造智能化的柱状图程序,用于报表等
Jun 19 PHP
编写PHP脚本过滤用户上传的图片
Jul 03 PHP
作为程序员必知的16个最佳PHP库
Dec 09 PHP
php5.4传引用时报错问题分析
Jan 22 PHP
PHP计算日期相差天数实例分析
Feb 23 PHP
PHP PDOStatement::setFetchMode讲解
Feb 03 PHP
Thinkphp 在api开发中异常返回依然是html的解决方式
Oct 16 PHP
非常好的php目录导航文件代码
Oct 09 #PHP
PHP4.04简明安装
Oct 09 #PHP
利用 window_onload 实现select默认选择
Oct 09 #PHP
将RTF格式的文件转成HTML并在网页中显示的代码
Oct 09 #PHP
简单的用PHP编写的导航条程序
Oct 09 #PHP
信用卡效验程序
Oct 09 #PHP
用文本文件实现的动态实时发布新闻的程序
Oct 09 #PHP
You might like
openPNE常用方法分享
2011/11/29 PHP
zf框架的数据库追踪器使用示例
2014/03/13 PHP
php实现SAE上使用storage上传与下载文件的方法
2015/06/29 PHP
php验证码实现代码(3种)
2015/09/07 PHP
thinkPHP5框架设置404、403等http状态页面的方法
2018/06/05 PHP
跨浏览器的设置innerHTML方法
2006/09/18 Javascript
JScript中使用ADODB.Stream判断文件编码的代码
2008/06/09 Javascript
25个非常棒的jQuery滑块插件和教程小结
2011/09/02 Javascript
JavaScript高级程序设计(第3版)学习笔记2 js基础语法
2012/10/11 Javascript
网页中可关闭的漂浮窗口实现可自行调节
2013/08/20 Javascript
jquery validate在ie8下的bug解决方法
2013/11/13 Javascript
jquery 显示*天*时*分*秒实现时间计时器
2014/05/07 Javascript
js怎么判断flash swf文件是否加载完毕
2014/08/14 Javascript
JQuery标签页效果的两个实例讲解(4)
2015/09/17 Javascript
深入理解JavaScript中的预解析
2017/01/04 Javascript
超详细动手搭建一个VuePress 站点及开启PWA与自动部署的方法
2019/01/27 Javascript
微信小程序bindinput与bindsubmit的区别实例分析
2019/04/17 Javascript
vue使用vuex实现首页导航切换不同路由的方法
2019/05/08 Javascript
利用webpack理解CommonJS和ES Modules的差异区别
2020/06/16 Javascript
vue+vuex+axios从后台获取数据存入vuex,组件之间共享数据操作
2020/07/31 Javascript
[48:26]VGJ.S vs infamous Supermajor 败者组 BO3 第二场 6.4
2018/06/05 DOTA
Python3基础之基本数据类型概述
2014/08/13 Python
Python的迭代器和生成器使用实例
2015/01/14 Python
python实现从一组颜色中找出与给定颜色最接近颜色的方法
2015/03/19 Python
python实现根据用户输入从电影网站获取影片信息的方法
2015/04/07 Python
Pycharm及python安装详细教程(图解)
2020/07/31 Python
python如何爬取动态网站
2020/09/09 Python
基于tensorflow __init__、build 和call的使用小结
2021/02/26 Python
如何安装ruby on rails
2014/02/09 面试题
绿化先进工作者事迹材料
2014/01/30 职场文书
大学生个人求职信例文
2014/07/07 职场文书
2015年挂职锻炼工作总结
2014/12/12 职场文书
2015年教师节贺卡寄语
2015/03/24 职场文书
python 管理系统实现mysql交互的示例代码
2021/12/06 Python
Selenium浏览器自动化如何上传文件
2022/04/06 Python
Pytorch中expand()的使用(扩展某个维度)
2022/07/15 Python