Heim  >  Artikel  >  Backend-Entwicklung  >  PHP 大日志文件读写

PHP 大日志文件读写

WBOY
WBOYOriginal
2016-07-25 09:06:471249Durchsuche
日志文件较大,2个多G。没办法用file操作,只能按行读取。                               
                   
                               
                                               
                                       
            
  1. set_time_limit(0);
  2. @ini_set('memory_limit', '64M');
  3. $conn = mysql_pconnect('localhost', 'hcq', 'hcq') or die("con\'t connection db.");
  4. mysql_select_db('log', $conn);
  5. mysql_query('set names utf8', $conn);
  6. $file = '/home/hcq/data/www.nimmin.com_20120601_access.log';
  7. $handle = fopen($file, "r") or die("can\'t open file {$file}");
  8. while($log = stream_get_line($handle, 8192, "\n")) {
  9.     $i = explode(' ', $log);
  10.     $path = isset($i[6]) ? str_replace('http://www.nimmin.com', '', $i[6]) : false;
  11.     if($path) {
  12. preg_match('/(jpg|png|gif)/iu', $path, $m);
  13. if(isset($i[8]) && $i[8] === '200' && count($m) > 0) {
  14. $len = isset($i[9]) ? intval($i[9]) : 0;
  15. $refer = isset($i[12]) ? str_replace('"', '', $i[12]) : '';
  16. mysql_query('INSERT INTO trace(path, len, refer) VALUES (\''.$path.'\', '.$len.', \''.$refer.'\')', $conn);
  17. }
  18. }
  19. }
  20. fclose ($handle);
  21. exit;
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn