我一直在使用 PHP DOM 来创建和保存一个 xml 文件(第三方 xml 文件)。到目前为止,我的结构是正确的,但是遇到了一个元素没有用结束标签结束的问题,即
<FX>
<Stompbox ID="1">
<Module ID="0" POS="0" BypassState="1"/>
</Stompbox>
</FX>
应该看起来像这样 - 模块结束标记
<FX>
<Stompbox ID="1">
<Module ID="0" POS="0" BypassState="1"></Module>
</Stompbox>
</FX>
这是代码
$xmlRoot = $domtree->appendChild($xmlRoot);
/* Add FX node */
$fx = $domtree->createElement("FX");
$fx = $xmlRoot->appendChild($fx);
/* Add Stompbox node */
$fx->appendChild($stompbox = $domtree->createElement('Stompbox'));
$attr_mod = new DOMAttr('ID', "1");
$stompbox->setAttributeNode($attr_mod);
$stompbox->appendChild($module = $domtree->createElement('Module'));
$attr_mod = new DOMAttr('ID', "0");
$module->setAttributeNode($attr_mod);
$attr_pos = new DOMAttr('POS', '0');
$module->setAttributeNode($attr_pos);
$attr_bypass_state = new DOMAttr('BypassState', '1');
$module->setAttributeNode($attr_bypass_state);
谢谢你的帮助。