i simpledom ile bir xml dosyadan bazı unsurlar kaldırıldı.
kodu:
$this->xmlDocument->removeNodes("//entity[name='mac']");
Burada ilk dosyadır:
<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>
sonradan dosyası:
<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>
Ayrıca ben kaldırma kodu koştu sonra kalan boş satırları kaldırmak nasıl acaba?
teşekkürler!