本文实例讲述了PHP解析RSS的方法。分享给大家供大家参考。具体如下:
代码如下:
parse();
foreach($RSS->getItems() as $item) {
print_r($item);
}
?>
2. RSS.PHP代码如下:
代码如下:
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 = "
<RSS version=\"2.0\">
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程序设计有所帮助。
原文链接:/php/22528.html