使用PHP创建的RSS提要仅在提要阅读器中显示标题

时间:2010-12-21 07:51:42

标签: php xml rss

我使用以下PHP代码为RSS提要生成XML,但它似乎无法正常工作。 Feed阅读器中没有显示简短说明,我看到的只是文章的标题。此外,所有文章都说它们是同时出版的。这是我第一次尝试设置RSS提要,所以我确信我犯了几个愚蠢的错误。

$result = mysql_query("SELECT * FROM blog ORDER BY id DESC LIMIT 10");

$date = date(DATE_RFC822);

header('Content-type: text/xml');

echo ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
echo ("<rss version=\"2.0\">\n");
echo ("<channel>\n");
echo ("<lastBuildDate>$date</lastBuildDate>\n");
echo ("<pubDate>$date</pubDate>\n");
echo ("<title>my website name</title>\n");
echo ("<description><![CDATA[the description]]></description>\n");
echo ("<link>http://my-domain.com</link>\n");
echo ("<language>en</language>\n");

$ch=100;
while ($a = mysql_fetch_array($result)) {
    $headline = htmlentities(stripslashes($a['subject']));
    $posturl = $a[perm_link];
    $content = $a['post'];
    $date = date(DATE_RFC822, $a['posted']);

    echo ("<item>\n");
    echo ("<title>$headline</title>\n");
    echo ("<link>$posturl</link>\n");
    echo ("<description><![CDATA[$content]]></description>\n");
    echo ("<guid isPermaLink=\"true\">$posturl</guid>\n");
    echo ("<pubDate>$date2</pubDate>\n");
    echo ("</item>\n");
}

echo ("</channel>\n");
echo ("</rss>\n");

1 个答案:

答案 0 :(得分:0)

  1. 你确定$ a ['post']包含帖子吗?

  2. $ a [perm_link]中缺少数组索引的引号;

  3. 您存储日期的变量称为$ date,而在Feed中您放置的是$ date2;

  4. (不影响功能但是)为什么在循环之前声明$ ch var?