php 分析rss代码一段
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-08 22:32:28 浏览: 评论:0
- <?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>";
- 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("</item>",$string);
- $content = "<font class="content">";
- for ($i=0;$i<10;$i++) {
- $link = ereg_replace(".*<link>","",$items[$i]);
- $link = ereg_replace("</link>.*","",$link);
- $title2 = ereg_replace(".*<title>","",$items[$i]);
- $title2 = ereg_replace("</title>.*","",$title2);
- if ($items[$i] == "") {
- $content = "";
- return;
- } else {
- if (strcmp($link,$title)) {
- $cont = 1;
- $content .= "<img src="images/arrow.gif" border="0" hspace="5"><a href="$link" target="new">$title2</a><br> ";
- }
- }
- }
- }
- echo "$content";
- }
- my_headlines
- ?>
Tags: php 分析 rss代码
- 上一篇:自动发布新闻的php代码
- 下一篇:php的把ubb代码转换成html代码的程序
相关文章
- ·PHP中通过Web 执行C/C++应用程序(2013-11-13)
- ·用PHP实现Ftp用户的在线管理(2013-11-13)
- ·用PHP自动把纯文本转换成Web页面(2013-11-13)
- ·用实例分析PHP5异常处理(2013-11-13)
- ·php5的simplexml解析错误(2013-11-13)
- ·PHP后门的隐藏技巧测试报告(2013-11-13)
- ·PHP缓存技术详谈(2013-11-27)
- ·利用PHP自定义错误处理器处理出错信息(2013-11-27)
- ·PHP作wap开发时遇到的问题(2013-11-27)
- ·php编写大型网站问题集(2013-11-27)
- ·php测试性能代码(2013-11-28)
- ·php 安全register globals设置为TRUE的危害(2013-11-28)
- ·XSLTProcessor 中 registerPHPFunctions 后无法调用 php 函数(2013-11-30)
- ·PHP中常用三种缓存技术(2013-11-30)
- ·新浪微博PHP版SDK的导致20007错误(2013-12-03)
- ·linux中phpMyAdmin错误提示Wrong permissions on configuration file, should no(2013-12-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)