Advertisement
Guest User

To GFB

a guest
Sep 10th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php
  2. set_time_limit(3600);
  3.  
  4. $dir = 'keys';                            // директория с кеями
  5. $word = 'viagra,cialis,levitra';   // слова с которыми нужно оставить строки
  6. $new_dir = 'keys2';                 // в какую дирректорию сохранять резалт
  7.  
  8. $word = explode(',', $word);
  9. $d = scandir($dir);
  10. foreach($d as $f) {
  11.     $f = trim($f);
  12.     $file = file($dir.'/'.$f);
  13.     foreach($file as $line) {
  14.         $line = trim($line);
  15.         foreach($word as $_word) {
  16.             trim($_word);
  17.             if(strstr($line, $_word)) {
  18.                 file_put_contents($new_dir.'/'.$f, $line."\n", FILE_APPEND | LOCK_EX);
  19.                 break 1;
  20.             }
  21.         }
  22.     }
  23.     echo('файл '.$f.' пройден<br />');
  24. }
  25. echo('<hr /><br />finish');
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement