>  기사  >  백엔드 개발  >  php 分析rss代码一段_PHP教程

php 分析rss代码一段_PHP教程

WBOY
WBOY원래의
2016-07-13 16:54:20740검색

function my_headlines($url) {
      $rdf = parse_url($url);
      $fp = fsockopen($rdf['host'], 80, $errno, $errstr, 15);
      if (!$fp) {
     $content = "Problema!";
     return;
      }
      if ($fp) {
     fputs($fp, "GET " . $rdf['path'] . "?" . $rdf['query'] . " HTTP/1.0 ");
     fputs($fp, "HOST: " . $rdf['host'] . " ");
     $string = "";
     while(!feof($fp)) {
     $pagetext = fgets($fp,300);
     $string .= chop($pagetext);
 }
 fputs($fp,"Connection: close ");
 fclose($fp);
 $items = explode("",$string);
 $content = "";
 for ($i=0;$i     $link = ereg_replace(".*","",$items[$i]);
     $link = ereg_replace(".*","",$link);
     $title2 = ereg_replace(".*","",$items[$i]);<br>     $title2 = ereg_replace(".*","",$title2);
     if ($items[$i] == "") {
         $content = "";
         return;
     } else {
         if (strcmp($link,$title)) {
       $cont = 1;
      $content .= "php 分析rss代码一段_PHP教程$title2
";
    }
     }
 }
      }
      echo "$content";
}
my_headlines
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631791.htmlTechArticle?php function my_headlines($url) { $rdf = parse_url($url); $fp = fsockopen($rdf['host'], 80, $errno, $errstr, 15); if (!$fp) { $content = "font class="content"Problema!/font"; retur...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.