您好,登錄后才能下訂單哦!
小編給大家分享一下php simplexml刪除節點的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
php simplexml刪除節點的實現方法:首先創建一個PHP示例文件;然后通過“unset($book->year);”方法刪除year節點即可。
PHP SimpleXML 操作xml文檔,刪除元素
sxe_delete.php:
<?php //[需求]:刪除所有書籍的year節點 $sxe = simplexml_load_file("bookstore.xml"); foreach ($sxe->book as $book) { unset($book->year); //刪除year節點。刪除變量用unset()。 } $sxe->asXML('sxe_delete_book.xml');
bookstore.xml:
<?xml version="1.0" encoding="utf-8" ?> <bookstore> <book category="COOKING"> <title>Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="CHILDREN"> <title>Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <title>Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore>
以上是php simplexml刪除節點的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。