Search in files





5
Date Submitted Wed. Feb. 28th, 2007 1:16 AM
Revision 1 of 1
Beginner lalamen
Tags Files | search
Comments 0 comments
Function to search in files

<?php

$to_search = 'myname'; // Word to search
$files         = array();

foreach(glob('*.*') as $file)
{
        $file_data = file_get_contents($file);
       
        if(ereg($to_search,$file_data) == true)
        {
                $files[] = realpath($file);
        }
}

print_r($files);

?>
 

Maor No

Comments

There are currently no comments for this snippet.

Voting

Votes Down