DomDocument xml 问题:
希望 xml 看起来像这样
<itunes:category text="Main Category">
<itunes:category text="Sub category"/>
</itunes:category>
但它看起来像这样
<itunes:category>text="Main Category"</itunes:category>
<itunes:category>text="Sub Category"</itunes:category>
这是php:
$chan3 = $chan->appendChild($xml->createElement('itunes:category','text="Main Category"'));
$chan3 = $chan->appendChild($xml->createElement('itunes:category', 'text="Sub Category"'));
无法正确嵌套这些 xml 标记。不希望 itunes:category 关闭子类别上的标签。我是否使用了 createElement 以外的东西?