《PHP學習:PHP解析RSS的方法》要點:
本文介紹了PHP學習:PHP解析RSS的方法,希望對您有用。如果有疑問,可以聯(lián)系我們。
本文實例講述了PHP解析RSS的辦法.分享給大家供大家參考.具體如下:PHP教程
1. php代碼如下:????
PHP教程
代碼如下:
<?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代碼如下:
代碼如下:
<?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 = "<?xml version=\"1.0\"?>
??? <rss version=\"2.0\">
?<channel>
???? <title>Our Demo RSS</title>
???? <link>http://www.tracypeterson.com/RSS/RSS.php</link>
???? <description>A Test RSS</description>
???? <language>en-us</language>
???? <pubDate>$now</pubDate>
???? <lastBuildDate>$now</lastBuildDate>
???? <docs>http://someurl.com</docs>
???? <managingEditor>you@youremail.com</managingEditor>
???? <webMaster>you@youremail.com</webMaster>
??? ";
foreach ($return as $line)
{
??? $output .= "<item><title>".htmlentities($line['headline'])."</title>
??????????????????? <link>".htmlentities($line['link'])."</link>
<description>".htmlentities(strip_tags($line['description']))."</description>
??????????????? </item>";
}
$output .= "</channel></rss>";
header("Content-Type: application/rss+xml");
echo $output;
?>
希望本文所述對大家的php程序設(shè)計有所贊助.PHP教程
《PHP學習:PHP解析RSS的方法》是否對您有啟發(fā),歡迎查看更多與《PHP學習:PHP解析RSS的方法》相關(guān)教程,學精學透。維易PHP學院為您提供精彩教程。
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/11876.html