我正在尝试使用PHP 5.6.24和DOMDocument创建XML文件。 XML的格式应该如下:
<parks xmlns:tch="{urn}" xmlns:prk="{urn}">
我的理解是以下代码块:
$root = $doc->createElementNS('http://www.w3.org/2005/Atom', 'element');
$doc->appendChild($root);
$root->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xmlns:g', 'http://base.google.com/ns/1.0');
$item = $doc->createElementNS('http://base.google.com/ns/1.0', 'g:item_type', 'house');
$root->appendChild($item);
允许我产生以下输出:
<element xmlns="http://www.w3.org/2005/Atom" xmlns:g="http://base.google.com/ns/1.0">
<g:item_type>house</g:item_type>
</element>
这个问题是这个方法只允许我添加一个标记名,而不是我需要的两个(tch和prk)。
是否可以使用DOMDocument库实现此结果,或者是否有更好的处理这种情况。
先谢谢你!!!!!!