我试图从头开始创建 WXR 文件(WordPress eXtended Rss)。
我的代码基于wordpress 生成的 XML/WXR 文件,开头如下:
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
我是这样开始的:
$newxml = new SimpleXMLElement("<rss></rss>");
$newxml->addAttribute('version', '2.0');
$newxml->addAttribute('xmlns:excerpt', 'http://wordpress.org/export/1.2/excerpt/');
$newxml->addAttribute('xmlns:content', 'http://purl.org/rss/1.0/modules/content/');
$newxml->addAttribute('xmlns:wfw', 'http://wellformedweb.org/CommentAPI/');
$newxml->addAttribute('xmlns:dc', 'http://purl.org/dc/elements/1.1/');
$newxml->addAttribute('xmlns:wp', 'http://wordpress.org/export/1.2/');
在此之后我打印 XML 是这样的:
echo htmlspecialchars($newxml->asXML());
我得到这样的XML:
<?xml version="1.0"?>
<rss version="2.0"
excerpt="http://wordpress.org/export/1.2/excerpt/"
content="http://purl.org/rss/1.0/modules/content/"
wfw="http://wellformedweb.org/CommentAPI/"
dc="http://purl.org/dc/elements/1.1/"
wp="http://wordpress.org/export/1.2/">
<channel/>
</rss>
(我添加了换行符以提高可读性)。
我如何强制使用完整属性,例如“xmlns:excerpt”而不是“excerpt”?