我正在用XML创建一个站点地图,它可以很好地显示一条记录,但是当包含1条以上的记录时,它会抛出错误:
XML解析错误:文档元素之后的垃圾
这里显示了这段代码:
<?xml version="1.0" encoding="UTF-8"?>
<url><loc>http://www.mywebsite.com/page/1</loc><changefreq>daily</changefreq><priority>0.6</priority></url>
<url><loc>http://www.mywebsite.com/page/2</loc><changefreq>daily</changefreq><priority>0.6</priority></url>
我的代码:
$xml = new DOMDocument('1.0', 'UTF-8');
for($i = 0; $i < 2; $i++)
{
$url = $xml->createElement('url');
$xml->appendChild($url);
$website_url = 'http://www.mywebsite.com/page/' . $i;
$loc = $xml->createElement('loc', $website_url);
$url->appendChild($loc);
$change = $xml->createElement('changefreq', 'daily');
$url->appendChild($change);
$priority = $xml->createElement('priority', '0.6');
$url->appendChild($priority);
}
header('Content-type: text/xml');
echo $xml->saveXML();
当XML对我有用时,为什么会抛出这种错误?
答案 0 :(得分:5)
至少在您的示例中,您有两个根节点(<url>
),因为在xml中不允许这样做,第二个是junk after document element
。
您错过了<urlset>
根节点,请参阅:http://www.sitemaps.org/protocol.php