无法在PHP

时间:2019-05-22 02:56:08

标签: php xml rss simplexml

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

  

第3行,第0列:缺少rss属性:版本

     

第14行,第6列:未定义的项目元素:内容(出现10次)

这是我的代码:

<?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>";

2 个答案:

答案 0 :(得分:0)

第一个错误只是缺少属性,很容易:

<rss version="2.0" ...>

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

&lt;p&gt;...

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

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

对于<content>标签问题,应改为<description><content>标签当前会产生两个错误。在两个地方都将其更改为<description>可以解决两个错误。

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

答案 1 :(得分:0)

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

您的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();