Search Code
  Home arrow Search Code arrow Search and Replace class
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Download TestComplete 
Forums Sitemap 
Weekly Newsletter 
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
SEARCH CODE

Search and Replace class
By: Codewalkers
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2002-04-26

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Class to enable search/replace of files. Can perform the search over one file, multiple files, entire directories with/without subdirectories. Can search using four different search functions, supporting ereg and preg regular expressions. Website

    By : Matt

    <?php
    /***************************************
    ** Title........: Search and replace utility
    ** Filename.....: search.replace.php
    ** Author.......: Richard Heyes
    ** Version......: 1.0
    ** Notes........:
    ** Last changed.: 09/09/2000
    ** Last change..:
    ***************************************/

    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;

    /***************************************
    ** Constructor function. Sets up the
    ** above functions.
    ***************************************/
    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;
    }

    /***************************************
    ** Accessor for retrieving last error.
    ***************************************/
    function get_last_error(){
    return $this->last_error;
    }

    /***************************************
    ** Accessor for setting find variable.
    ***************************************/
    function set_find($find){
    $this->find = $find;
    }

    /***************************************
    ** Accessor for setting replace variable.
    ***************************************/
    function set_replace($replace){
    $this->replace = $replace;
    }

    /***************************************
    ** Accessor for setting files variable.
    ***************************************/
    function set_files($files){
    $this->files = $files;
    }

    /***************************************
    ** Accessor for setting directories variable.
    ***************************************/
    function set_directories($directories){
    $this->directories = $directories;
    }

    /***************************************
    ** Accessor for setting include_subdir variable.
    ***************************************/
    function set_include_subdir($include_subdir){
    $this->include_subdir = $include_subdir;
    }

    /***************************************
    ** Accessor for setting ignore_lines variable.
    ***************************************/
    function set_ignore_lines($ignore_lines){
    $this->ignore_lines = $ignore_lines;
    }

    /***************************************
    ** Function to determine which search
    ** function is used.
    ***************************************/
    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;
    }
    }


    /***************************************
    ** The main search and replace routine.
    ** Private function - DO NOT CALL!
    ***************************************/
    function search($filename){

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

    for($i=0; $i<count($file_array); $i++){

    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 2;
    }
    }

    $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;

    }

    /***************************************
    ** The quick search function. Does not
    ** support the ignore_lines feature.
    ***************************************/
    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;

    }

    /***************************************
    ** The preg search function. Does not
    ** support the ignore_lines feature.
    ***************************************/
    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;

    }

    /***************************************
    ** The ereg search function. Does not
    ** support the ignore_lines feature.
    ***************************************/
    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 for writing out a new file.
    ***************************************/
    function writeout($filename, $contents){

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

    }

    /***************************************
    ** Internal function called by do_search()
    ** to sort out any files that need searching.
    ***************************************/
    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];
    }
    }
    }

    /***************************************
    ** Internal function called by do_search()
    ** to sort out any dirs that need searching.
    ***************************************/
    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];
    }
    }
    }
    }

    /***************************************
    ** This starts the search/replace off.
    ** Call this to do the search.
    ** First do whatever files are specified,
    ** and/or if directories are specified,
    ** do those too.
    ***************************************/
    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
    ?>

    <?php
    /***************************************
    ** Title........: Search and Replace class
    ** Filename.....: example.php
    ** Author.......: Richard Heyes
    ** Version......: See script
    ** Notes........:
    ** Last changed.: 10/09/2000
    ** Last change..:
    ***************************************/

    include('class.search_replace.inc');

    /***************************************
    ** Create the object, set the search
    ** function and run it. Then change the
    ** pattern to find something else, and
    ** re-run the search.
    ***************************************/

    $sr = new file_search_replace('test', 'Replaced!', array('test.txt'), '', 1, array('##'));

    /***************************************
    ** Following function not necessary as
    ** normal is the default, but here to
    ** illustrate it.
    ***************************************/
    $sr->set_search_function('normal');

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

    /***************************************
    ** Some ouput purely for the example.
    ***************************************/
    header('Content-Type: text/plain');
    echo 'Number of occurences found: '.$sr->get_num_occurences()."\r\n";
    echo 'Error message.............: '.$sr->get_last_error()."\r\n";

    ?>

    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More Search Code Articles
    More By Codewalkers

     

    IBM® developerWorks developerWorks - FREE Tools!


    NEW! Addressing software-as-a-service challenges using Tivoli security and WebSphere solutions

    Building a software-as-a-service solution requires addressing a few key technical challenges. In this webcast, we'll focus on the role of IBM Tivoli Directory Server and WebSphere Portlet Factory in creating a Software as a Service solution. We will demonstrate how to use Tivoli Directory Server to prevent the user population of one tenant from accessing the virtual portal and portlet components of another tenant. We will also use the dynamic profile capability of WebSphere Portlet Factory to create multiple highly customized applications from one code base.
    FREE! Go There Now!


    NEW! BlammoSplat: Build a community Web site of OpenLaszlo animations, Part 3: The community animation

    Learn to enable users to both rate existing animations and to combine existing animations into new snippets. This is the third in a series of three tutorials that chronicle the building of a site that enables collaborative discussion and animation building using Domino and OpenLaszlo.
    FREE! Go There Now!


    NEW! Cook up Web sites fast with CakePHP, Part 4: Use CakePHP&apos;s Session and Request Handler components

    CakePHP is a stable production-ready, rapid-development aid for building Web sites in PHP. This "Cook up Web sites fast with CakePHP" series shows you how to build an online product catalog using CakePHP.
    FREE! Go There Now!


    NEW! Evaluate IBM Rational Developer for System i V7.1

    Download a free trial version of IBM Rational Developer for System i V7.1, which provides a complete development environment for traditional i5/OS application development. IBM Rational Developer for System i is a new eclipse-based workstation offering for i5/OS application development that provides a comprehensive Integrated Development Environment for edit/compile/debug of traditional RPG/COBOL/C/C++ i5/OS applications.
    FREE! Go There Now!


    NEW! Hello World: Learn how to install and use the Rational Asset Manager Eclipse client

    In this tutorial, you can learn how to install and configure the IBM Rational Asset Manager Eclipse client, explore the different views in the Asset Management perspective, learn various search techniques, work with existing assets, and submit a new asset.
    FREE! Go There Now!


    NEW! Rational 'Talks to You' Teleconference Series

    This Fall, IBM Rational talks to you directly through a special teleconference series giving you access to the best minds in IBM Rational - product experts and market thought leaders who will answer your questions during these pre-scheduled telephone conference calls. Register today!
    FREE! Go There Now!


    NEW! Trial download: IBM Rational Manual Tester V7.0.1

    Try the latest version of IBM Rational Manual Tester V7.0.1 by downloading a free trial from IBM developerWorks. This manual test authoring and execution tool promotes test step reuse to reduce the impact of software change on testers and business analysts and addresses the needs of teams performing at least a portion of their testing manually.
    FREE! Go There Now!


    NEW! Try IBM Rational Asset Manager V7.0 online!

    You can now evaluate IBM Rational Asset Manager V7.0 online without installing or configuring it on your own system! Rational Asset Manager helps create, modify, govern, find, and reuse any type of development assets, including SOA and systems development assets. Rational Asset Manager helps you reduce software development costs and improve quality by facilitating the reuse of all types of software development-related assets. Visit developerWorks to learn more about this product and register to explore its capabilities online.
    FREE! Go There Now!


    NEW! Try the IBM SOA Sandbox for People

    Visit IBM developerWorks to try the IBM SOA Sandbox for people. The SOA Sandbox for people provides a trial environment with the necessary tooling and components required to enable consistent human and process interaction and collaboration, showing how you can improve user experience and business productivity.
    FREE! Go There Now!


    NEW! Webcast: IBM Rational Build Forge - Beyond the Build

    The discipline of assembling and delivering software is maturing beyond standard developer-centric compile/test software builds. The end-to-end software development lifecycle is emerging as the new focus moves “Beyond the Build.” Join this on demand webcast to learn about methods for streamlining software delivery and key capabilities of the IBM Rational Build Forge framework for automating build and release management in environments of any size.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

    SEARCH CODE ARTICLES

    - PHP IP Blocking
    - Search engine with ranking feature
    - Ajax access to Google API
    - Table Searcher
    - Search_It
    - FTP SEARCH
    - Search and Replace class
    - Simple Search on mysql database
    - Search Your Database
    - search_v1.1
    - Database Searching Class





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek