2012-05-26 113 views
-3

你好,大家好我正在尋找如何選擇XML元素,將其追加PHP的XML DOM文檔附加

,但我沒有發現任何東西 xml pic

<classes> 
    <class name="A" grade="10"> 
     <student age="16">Martin</student> 
    </class> 
    <class name="B" grade="10"> 
     <student age="16">Justin</student> 
    </class> 
</classes> 

例如,我想選擇類通過標籤名稱 然後附加學生元素 這就是我現在想知道的。

+0

[你嘗試過什麼?](http://whathaveyourtried.com) – jprofitt

+0

我一直在尋找在這裏它沒有與我 http://stackoverflow.com/questions/727132工作/ how-do-i-add-new-elements-to-xml-using-php-dom -insert-than-the-root – ThElitEyeS

回答

1

你可以使用jQuery嗎?如果是這樣,解決方案非常簡單。其中XML是XML文檔

$(xml).children('class[name="A"]').append(studentElement); 
+0

我想寫在文件上 – ThElitEyeS