所以我想從屬性是特定值的XML字符串中刪除子元素。如何從XML樹中刪除元素,其中屬性是簡單XML中的特定字符串PHP
例如:
<xml>
<note url="http://google.com">
Values
</note>
<note url="http://yahoo.com">
Yahoo Values
</note>
</xml>
那麼我將如何刪除與屬性http://yahoo.com作爲字符串的URL的說明節點?
我試圖做到這一點在PHP中簡單的XML
哦,也是我在加載它作爲與SimpleXML_Load_String功能像這樣的XML對象:
$notesXML = simplexml_load_string($noteString['Notes']);
類似的問題:http://stackoverflow.com/questions/262351/remove-a-child-with-a-specific-attribute-in-simplexml-for-php –
你從哪裏弄來'$ noteString從? – krummens