在 PHP 中创建有效的 RSS 提要时遇到问题

Trouble creating a valid RSS feed in PHP

我正在尝试获取 RSS 提要,更改一些文本,然后再次将其作为 RSS 提要提供。但是,我编写的代码无法正确验证。我收到这些错误:

line 3, column 0: Missing rss attribute: version

line 14, column 6: Undefined item element: content (10 occurrences)

这是我的代码:

<?php
header("Content-type: text/xml");

echo "<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet type='text/xsl'?>
<?xml-stylesheet type='text/xsl' media='screen'                 
href='/~d/styles/rss2full.xsl'?>
<rss xmlns:content='http://purl.org/rss/1.0/modules/content/'>

<channel>
<title>Blaakdeer</title>
<description>Blog RSS</description>
<language>en-us</language>
";


$html = "";
$url = "http://feeds.feedburner.com/vga4a/mPSm";
$xml = simplexml_load_file($url);

for ($i = 0; $i < 10; $i++){
$title = $xml->channel->item[$i]->title;
$description = $xml->channel->item[$i]->description;
$content = $xml->channel->item[$i]->children("content", true);
$content = preg_replace("/The post.*/","", $content);

echo "<item>
<title>$title</title>
<description>$description</description>
<content>$content</content>
</item>";
 }


echo "</channel></rss>";

第一个错误只是缺少属性,很简单:

<rss version="2.0" ...>

对于 <p> 和其他 HTML 元素,您需要对它们进行转义。该文件应如下所示:

&lt;p&gt;...

还有其他方法,但这是最简单的方法。在 PHP 中,您可以只调用一个函数来对实体进行编码。

$output .= htmlspecialchars(" <p>Paragraph</p> ");

至于<content>标签的问题,应该是<description><content> 标记当前生成两个错误。在两个地方将其更改为 <description> 应该可以修复这两个错误。

否则看起来你了解基础知识。您的 <open></close> 标签必须匹配。您还可以使用所谓的空标签:<empty/> 它们独立存在但不包含内容且没有结束标签。

正如您在解析 XML 时不将其视为字符串一样,在创建它时也不会将其视为字符串。使用适当的工具来创建您的 XML;在这种情况下,DomDocument class.

您的 XML 遇到了一些问题;最大的问题是您正在创建一个 <content> 元素,但原始 RSS 有一个 <content:encoded> 元素。这意味着元素名称是 encoded 但它位于 content 命名空间中。这与名为 content 的元素有很大区别。我添加了评论来解释其他步骤。

<?php

// create the XML document with version and encoding
$xml = new DomDocument("1.0", "UTF-8");
$xml->formatOutput = true;
// add the stylesheet PI
$xml->appendChild(
    $xml->createProcessingInstruction(
        'xml-stylesheet',
        'type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"'
    )
);
// create the root element
$root = $xml->appendChild($xml->createElement('rss'));
// add the version attribute
$v = $root->appendChild($xml->createAttribute('version'));
$v->appendChild($xml->createTextNode('2.0'));
// add the namespace
$root->setAttributeNS(
    'http://www.w3.org/2000/xmlns/',
    'xmlns:content',
    'http://purl.org/rss/1.0/modules/content/'
);
// create some child elements
$ch = $root->appendChild($xml->createElement('channel'));
// specify the text directly as second argument to
// createElement because it doesn't need escaping
$ch->appendChild($xml->createElement('title', 'Blaakdeer'));
$ch->appendChild($xml->createElement('description', 'Blog RSS'));
$ch->appendChild($xml->createElement('language', 'en-us'));

$url = "http://feeds.feedburner.com/vga4a/mPSm";
$rss = simplexml_load_file($url);

for ($i = 0; $i < 10; $i++) {
    if (empty($rss->channel->item[$i])) {
        continue;
    }
    $title = $rss->channel->item[$i]->title;
    $description = $rss->channel->item[$i]->description;
    $content = $rss->channel->item[$i]->children("content", true);
    $content = preg_replace("/The post.*/","", $content);

    $item_el = $ch->appendChild($xml->createElement('item'));

    $title_el = $item_el->appendChild($xml->createElement('title'));
    // this stuff is unknown so it has to be escaped
    // so have to create a separate text node
    $title_el->appendChild($xml->createTextNode($title));

    $desc_el = $item_el->appendChild($xml->createElement('description'));
    // the other alternative is to create a cdata section
    $desc_el->appendChild($xml->createCDataSection($description));

    // the content:encoded element is not the same as a content element
    // the element must be created with the proper namespace prefix
    $cont_el = $item_el->appendChild(
        $xml->createElementNS(
            'http://purl.org/rss/1.0/modules/content/',
            'content:encoded'
        )
    );
    $cont_el->appendChild($xml->createCDataSection($content));
}

header("Content-type: text/xml");
echo $xml->saveXML();