houssam_ballout Posted January 26, 2011 Share Posted January 26, 2011 Hello, I had simple php website in one folder, no database in the website. I need a method for text search in the web directory... Any help? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/ Share on other sites More sharing options...
litebearer Posted January 26, 2011 Share Posted January 26, 2011 perhaps something like this? <?PHP /* seach all the txt files in a directory for a string */ /* $files = glob("/path/to/directory/*.txt"); */ $files = glob("ajaxfiles/*.htm"); /* initialize a counter */ $start = 0; /* count the number of files found */ $end = count($files); /* set the value for whatever it is you are seaching for */ $needle = "speed"; /* start looping thru the files */ while($start<$end) { /* get the contents of the file */ $filecontents = file_get_contents($files[$start]); /* check to see if the file contains your search value */ /* if yes, store the file name into a new array */ if(!stristr($filecontents, $needle) === FALSE) { $goodfiles[] = $files[$start]; } /* increment your counter */ $start ++; } /* display the list of files that contain your search value */ print_r($goodfiles); ?> Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165388 Share on other sites More sharing options...
houssam_ballout Posted January 26, 2011 Author Share Posted January 26, 2011 It didn't work I put the folder name at the first string then put the search word I need but it won't display any results... Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165399 Share on other sites More sharing options...
litebearer Posted January 26, 2011 Share Posted January 26, 2011 Show us your code (I tested the code on my system and it does work) Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165401 Share on other sites More sharing options...
houssam_ballout Posted January 26, 2011 Author Share Posted January 26, 2011 Directory called test-search and the file I am using for this is called: test2.php <?PHP /* seach all the txt files in a directory for a string */ /* $files = glob("/path/to/directory/*.txt"); */ $files = glob("test-search/*.html"); /* initialize a counter */ $start = 0; /* count the number of files found */ $end = count($files); /* set the value for whatever it is you are seaching for */ $needle = "test"; /* start looping thru the files */ while($start<$end) { /* get the contents of the file */ $filecontents = file_get_contents($files[$start]); /* check to see if the file contains your search value */ /* if yes, store the file name into a new array */ if(!stristr($filecontents, $needle) === FALSE) { $goodfiles[] = $files[$start]; } /* increment your counter */ $start ++; } /* display the list of files that contain your search value */ print_r($goodfiles); ?> Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165426 Share on other sites More sharing options...
litebearer Posted January 26, 2011 Share Posted January 26, 2011 Based upon your code, DO any of the html files in the test-search folder contain the word 'test' in them? NOT the file name BUT the actual content of the file. Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165431 Share on other sites More sharing options...
houssam_ballout Posted January 26, 2011 Author Share Posted January 26, 2011 I noticed one thing while I was troubleshooting, I make echo end , which is the count of files, but it won't find any files why? Quote Link to comment https://forums.phpfreaks.com/topic/225701-php-file-text-search/#findComment-1165642 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.