• 新浪新闻采集程序


    <?php
        //error_reporting(0);
        $date=date("Ymd");
        //echo $date;
        $url="http://top.finance.sina.com.cn/ws/GetTopDataList.php?top_type=day&top_cat=all&top_time=".$date."&top_show_num=20&top_order=ASC";
        $doc=file_get_contents($url);
        header("Content-Type:text/html;charset=gb2312");//UNICODE转GB2312
        //echo $doc;
        preg_match_all('/"url":".*l/U',$doc,$article);//获取文章列表
        $article=current($article);//二维数组转一维数组
        //print_r($article);
        $rule="/"url":(.*)""/";
        function OnlyUrl($string){
           $string=stripslashes($string);
           $string=str_replace('"url":"',"",$string);
           return $string; 
        }
         
        function GetTitle($url){  //获取文章标题
          $doc=file_get_contents($url);
          $rule="/<h1 (.*)</h1>/";
          preg_match($rule,$doc,$result);
          echo $result;
        }
        foreach($article as &$value){
            $value=OnlyUrl($value);
        }//提取了URL 
    ?>
    <?php
      function GetTitle($url){  //获取文章标题
        $rule="/<h1 (.*)</h1>/";
        preg_match_all($rule,$doc,$result);
        $rule="/>(.*)</";//截掉<h1></h1>
        preg_match($rule,$result[0][1],$title);
        return $title[1];
      }
      function GetContent($url){
        $doc=file_get_contents($url);//打开网页
      // echo $doc; 
        $rule="/publish_helper(.*)publish_helper_end/xs";
        preg_match($rule,$doc,$result);//取出正文部分
        //echo $result[0];
        $rule="/publish_helper(.*)</blockquote>/xs";
        preg_match($rule,$result[0],$out);//取出链接部分
        //print_r($out);
        $content=str_replace($out[0],"",$result[0]);//提取纯文字段的内容
        echo $content;
      }
    ?>
  • 相关阅读:
    李洪强九宫格的实现
    iOS开发多线程篇 11 —自定义NSOperation
    CALayer3-层的属性
    网络编程小结
    iOS开发多线程篇 10 —NSOperation基本操作
    CALayer2-创建新的层
    iOS开发之多文件上传
    三级联动
    用 ERD 盘解决 Win8 自己主动更新后不能启动的问题
    hdu1028(母函数+DP)
  • 原文地址:https://www.cnblogs.com/shanyansheng/p/5474257.html
Copyright © 2020-2023  润新知