当前位置:Gxlcms > PHP教程 > PHP+jQuery+POST采集网页示例

PHP+jQuery+POST采集网页示例

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

利用JQuery强大的DOM操纵能力来采集页面数据,
然后组织数据以POST的方式发送数据给自身,
自身接收POST来的数据再以CSV格式写入到文件.

声明:
本程序仅作学习和演示之用,请勿频繁采集示例中的网址;
以免给目标网站造成不必要的麻烦!
欢迎大家提出意见
  1. set_time_limit(0);
  2. $num = range(0, 49100, 100);
  3. $base = 'http://www.zjchina.org/mspMajorIndexAction.fo?&startcount=';
  4. $page = isset($_GET['startcount']) ? $_GET['startcount'] : 0;
  5. $next_url = $_SERVER['SCRIPT_NAME'].'?startcount='.($page+1);
  6. if ( !isset($num[$page]) ) { exit('采集完了'); }
  7. //提交数据
  8. if ( $_POST && count($_POST) && isset($_POST['send']) ) {
  9. $send = $_POST['send'];
  10. $file = dirname(__FILE__).'/data.csv';
  11. if ( file_exists($file) ) { unset($send[0]); }
  12. $fp = fopen($file, 'a+');
  13. foreach($send as $line) { fputcsv($fp, $line); }
  14. fclose($fp);
  15. exit(json_encode(array('jump' => $next_url)));
  16. }
  17. //抓取数据
  18. $html = file_get_contents($base.$num[$page]);
  19. $html = str_replace('script', 'pre', $html);
  20. $html .= '
  21. ';
  22. echo $html;

人气教程排行