我用 simpledom 从 xml 文件中删除了一些元素。
编码:
$this->xmlDocument->removeNodes("//entity[name='mac']");
这是初始文件:
<entity id="1000070">
<name>apple</name>
<type>category</type>
<entities>
<entity id="7002870">
<name>mac</name>
<type>category</type>
</entity>
<entity id="7024080">
<name>iphone</name>
<type>category</type>
</entity>
<entity id="7024080">
<name>ipad</name>
<type>category</type>
</entity>
</entities>
</entity>
之后的文件:
<entity id="1000070">
<name>apple</name>
<type>category</type>
<entities>
<entity id="7024080">
<name>iphone</name>
<type>category</type>
</entity>
<entity id="7024080">
<name>ipad</name>
<type>category</type>
</entity>
</entities>
</entity>
我想知道在运行删除代码后如何删除留下的空白行?
谢谢!