当前位置:Gxlcms > PHP教程 > PHP大日志文件读写

PHP大日志文件读写

时间:2021-07-01 10:21:17 帮助过:15人阅读

日志文件较大,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;

人气教程排行