同時提取多條新聞中的文本一例

來源:互聯網
上載者:User
關鍵字 同時提取多條新聞中的文本一例
本文為一個提取一批新聞網頁中的文本的小程式,它可以將各篇新聞的內容存為以該新聞標題為檔案名稱的文字檔。如有更好的處理方法,請和我聯絡:
lwx3069@sina.com
  這裡以人民網中的“今日要聞”下的新聞為例.
($url) ? "" : $url = "http://www.unn.com.cn/GB/channel2/3/11/index.html";    // 今日要聞
if(isset($url)&&$url!="")    {
  $str = implode("",file($url));
  $str_ary = explode("
    ",$str);
      $str_ary = explode("
  • ",trim($str_ary[1]));
      for ($i=0; $i<8; $i++)    {
       if (strlen(trim($str_ary[$i]))<3){
       continue;
       }
       echo "新聞".$i.":".$str_ary[$i];
       $str1=strstr("$str_ary[$i]",'   $str2=strstr("$str_ary[$i]",'" target');
       $len1=strlen("$str1");
       $len2=strlen("$str2");
       $len=$len1-$len2;
       $url=substr("$str1",10,$len-10);
       if (strlen(trim($url))!=0) {
         $url = "http://www.unn.com.cn/".$url;
         define(CONTENTS_DIR,"./contents/");
         if(isset($url)&&$url!="")    {
          $str = implode("",file($url));
          $str1=explode('',$str);      //去掉檔案沒用的上半部分
          $str2 = explode('

    ',$str1[1]);
          //取出檔案的下半部分,並去掉沒用的下半部分,這時得到的都是有用的
          $str3=explode('',$str2[0]);  //從整個有用部分取出檔案標題和本文
          $str4=explode('',$str2[0]);  //取出日期和時間
          $str5=explode('
    ',$str3[1]);   //從標題和本文部分取出標題
          $title=str_replace("
    ","",$str5[0]);
          $str3=explode('

    ',$str2[0]);     //從整個有用部分取出檔案本文
          $str3[1]=str_replace('

      ',"\n"."  ",$str3[1]);
          $str3[1]=str_replace(' ',"",$str3[1]);
          $str3=strip_tags($str3[1]);
          $pf=trim($title).".txt";
          $ppf=fopen(CONTENTS_DIR."$pf",'w');
          fputs($ppf,$title);
          fputs($ppf,"$str4[0]");
          fputs($ppf,$str3);
        }
       }
     }
    }
    ?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.