如何从大型 xml 文件中获取数据
我有一个大的xml文件,我从air search api获取现在我只想从中获取数据并以(TagName:tagdata或innerhtml)等格式显示它
<tr>
<td> TagName : </td>
<td>Tag Value or its InnerHTML</td>
</tr>
我想将所有数据转换为表格形式我也希望整个数据为在导航时,我发现很多脚本可以执行此操作,但仅显示第一组数据。
I have a large xml file which im getting from air search api now i just wanted to get data from it and show it in format like (TagName : tagdata or innerhtml)
<tr>
<td> TagName : </td>
<td>Tag Value or its InnerHTML</td>
</tr>
i want to get all data into tabular form also i want whole data as while navigating i found a lot of script which does this but shows only first set of data.
link to file is http://bp.elxer.com/air_search.xml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用 php simplexml_load_file
得到结果时,很容易用数据做任何你想要的事情。
You can use php simplexml_load_file
When you get the result, its easy to make whatever you want with the data.