PHP解析RSS的方法_PHP教程
                        
                            时间:2021-07-01 10:21:17
                            帮助过:3人阅读
							                        
                     
                    
                    PHP解析RSS的方法
 这篇文章主要介绍了PHP解析RSS的方法,实例分析了php解析RSS的原理与XML文件的操作技巧,需要的朋友可以参考下
 
 
本文实例讲述了PHP解析RSS的方法。分享给大家供大家参考。具体如下:
1. php代码如下:     
代码如下:
require "XML/RSS.php";
$rss =  new  XML_RSS("http://php.com/news.rss");
$rss->parse();
foreach($rss->getItems()  as $item) {
print_r($item);
}
?>
2. RSS.php代码如下:
代码如下:
$database =   "nameofthedatabase";
$dbconnect = mysql_pconnect(localhost, dbuser,  dbpassword);
mysql_select_db($database, $dbconnect);
$query = "select  link, headline, description from `headlines` limit 15";
$result =  mysql_query($query, $dbconnect);
while ($line =  mysql_fetch_assoc($result))
{
$return[] = $line;
}
$now =  date("D, d M Y H:i:s T");
$output = "
Our Demo  RSS
http://www.tracypeterson.com/RSS/RSS.php
A Test RSS
en-us
$now
$now
http://someurl.com
you@youremail.com
you@youremail.com
";
foreach  ($return as $line)
{
$output .=  "- ".htmlentities($line['headline'])."
 ".htmlentities($line['link'])."
 ".htmlentities(strip_tags($line['description']))."
 
";
}
$output .=  "";
header("Content-Type:  application/rss+xml");
echo $output;
?>
 
希望本文所述对大家的php程序设计有所帮助。
 
http://www.bkjia.com/PHPjc/963984.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/963984.htmlTechArticlePHP解析RSS的方法 这篇文章主要介绍了PHP解析RSS的方法,实例分析了php解析RSS的原理与XML文件的操作技巧,需要的朋友可以参考下 本文实例讲述...