php 分析rss代码一段_PHP教程

WBOY
发布: 2016-07-13 16:54:20
原创
744 人浏览过

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...
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板