使用 createElement 的自闭合标签
我需要在 PHP 中使用 DOM 在 XML 文件中添加一个自关闭标签,但我不知道如何操作,因为标准情况下,这个标签看起来像这样:
<tag></tag>
但它应该看起来像这样:
<tag/>
I need to add a self-closing tag to XML file with DOM in PHP, but I don't know how, because standardly, this tag looks like this:
<tag></tag>
But it should look like this:
<tag/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DOM 会自动为你做这件事,
默认情况下会给出,
除非你
这样做,然后就会给出
DOM will do that automatically for you
will give by default
unless you do
which would then give
只需将
node
参数传递给DOMDocument::saveXML
为了仅输出特定节点,没有任何 XML 声明:将给出
不 包含任何换行符/回车符结尾字符。
Just pass a
node
param toDOMDocument::saveXML
in order to output only a specific node, without any XML declaration:will give
not containing any new line / carriage return ending char.