我不能讓XML節點的內容,並在同一時間用SimpleXML庫屬性:使用simplexml_load_file()不獲取節點內容
我有以下XML,並希望得到[email protected]
屬性和節點的內容:
<page id="id1">
<content name="abc">def</content>
</page>
方法simplexml_load_string()
print_r(simplexml_load_string('<page id="id1"><content name="abc">def</content></page>'));
輸出該:
SimpleXMLElement Object
(
[@attributes] => Array
(
[id] => id1
)
[content] => def
)
如您所見,content
節點的內容存在,但屬性丟失。我如何獲得內容和屬性?
謝謝!
介紹與有關如何使用SimpleXML訪問元素和屬性的示例,請參閱PHP手冊中的詳細信息:[Basic SimpleXML用法](https://php.net/manual/en/simplexml.examples-basic.php) - 您可能會找到它的信息 – hakre