当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现的抓取小说网站内容功能示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-28 18:26:02 浏览: 评论:0 

这篇文章主要介绍了PHP实现的抓取小说网站内容功能,涉及php页面抓取、正则匹配、文件读写等相关操作技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现的抓取小说网站内容功能,分享给大家供大家参考,具体如下:

爬取免费内容,弄到手机,听书,妥妥的。

  1. ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; GreenBrowser)'); 
  2. ini_set('max_execution_time''0'); 
  3. $base = 'https://www.qu.la/book/19434/'
  4. $start = '7504808.html'
  5. $content_grep = '/&nbsp;&nbsp;&nbsp;&nbsp;(.*)<br\/>/'
  6. //$content_grep = '/<div id="content">(.*)<br\/>/sS'; 
  7. $next_grep = '/<a id="pager_next" href=\"(\d+\.html)\" target="_top" class="next">下一章<\/a>/'
  8. $next = $start
  9. $file_name = '听书了.txt'
  10. while($next) { 
  11.   echo 'getting ' . $next . PHP_EOL; 
  12.   $result = file_get_contents($base . $next); 
  13.   preg_match_all($content_grep$result$match); 
  14.   $isTitle = true; 
  15.   $content = ""
  16.   foreach($match[1] as $line) { 
  17.     $line  = str_replace("<br/>"''$line); 
  18.     $line  = str_replace(" "''$line); 
  19.     if($isTitle) { 
  20.       $content = $line . PHP_EOL . PHP_EOL; 
  21.       $isTitle = false; 
  22.     } else { 
  23.       $content .= '    ' . $line . PHP_EOL . PHP_EOL; 
  24.     } 
  25.   } 
  26.   $file = fopen($file_name'a'); 
  27.   echo 'write length: ' . strlen($content) . PHP_EOL; 
  28.   fwrite($file$content); 
  29.   fclose($file); 
  30.   echo '.'
  31.   preg_match($next_grep$result$match); 
  32.   $next = $match[1]; 
  33. }

Tags: PHP抓取小说网站内容

分享到: