Home > php教程 > php手册 > PHP解析RSS的方法

PHP解析RSS的方法

WBOY
Release: 2016-06-13 09:13:15
Original
803 people have browsed it

PHP解析RSS的方法

 这篇文章主要介绍了PHP解析RSS的方法,实例分析了php解析RSS的原理与XML文件的操作技巧,需要的朋友可以参考下

 

 

本文实例讲述了PHP解析RSS的方法。分享给大家供大家参考。具体如下:

1. php代码如下:

代码如下:

require "XML/RSS.php";
$rss = new XML_RSS("http://php.net/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程序设计有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template