欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 大日志文件读写

程序员文章站 2022-05-21 08:25:25
...
日志文件较大,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;
复制代码