我有一个具有以下架构的 XML 文件:
<?xml version="1.0" encoding="UTF-8"?>
<languages>
<language type="persian" abbr_type="fa">
<menu>
<home></home>
<contact></contact>
<about></about>
<style></style>
</menu>
<title>
<home></home>
<contact></contact>
<about></about>
<style></style>
<list></list>
<biography></biography>
<picture></picture>
<movie></movie>
</title>
<about></about>
<welcome></welcome>
</language>
<language type="english" abbr_type="en">
<menu>
<home></home>
<contact></contact>
<about></about>
<style></style>
</menu>
<title>
<home></home>
<contact></contact>
<about></about>
<style></style>
<list></list>
<biography></biography>
<picture></picture>
<movie></movie>
</title>
<about></about>
<welcome></welcome>
</language>
如果语言标签的属性是“波斯语”,我想获取标题数据。
我怎样才能从 XML 中获取一系列数据呢?有没有办法获取数据并放入数组中?