是否可以使用simplexml更新xml的節點屬性? 例如:我的程序實際上是一個老師的測驗編輯器,作爲一名教師,我想編輯一個具體的問題屬性。即使用php更新xml中的節點屬性使用php
<Quiz>
<topic text="Preparation for Exam">
<subtopic text="Math">
<question text="1 + 1 = ?">
<answer num="A" Text="1" />
<answer num="B" Text="2" />
<answer num="C" Text="3" />
<answer num="D" Text="4" />
</question>
<question text="4 * 4 = ?" >
<answer num="A" Text="12" />
<answer num="B" Text="14" />
<answer num="C" Text="16" />
<answer num="D" Text="18" />
</question>
</subtopic>
</topic>
</Quiz>
是否有可能?儘管我已經嘗試了很多方法,例如刪除前一個節點,然後插入編輯過的節點。但這一招只適用於最後一個節點...其他節點用它只是換
來吧傢伙....需要幫助這裏.... – user2083529
你也可以嘗試使用phpQuery類而不是SimpleXML。 –
是的。繼續先生,我會很高興看到的代碼:) – user2083529