duanshan3427 2013-05-13 15:56
浏览 86
已采纳

API被重定向到xml页面,如何通过调用该api来获取该xml页面的内容?

First sorry for my grammar, my english is not good.

I'm building a website basically just use the api of a company. Normally when I call the api it returns json array and I can use PHP function "file_get_contents()" and "json_decode()" to process and show the contents of returned data on my website.

But one of their api redirect me to an xml page instead of returning json data. The content of that xml page shows like this:

<products>
  <item id="0">
    <product_id>abcdefg12345</product_id>
    <product_name>blablablabla</product_name>
  </item>
  <item id="1">
    <product_id>sdfhtdngfnhf</product_id>
    <product_name>blablablabla</product_name>
  </item>
 .....................................
</products>

I was trying to use "simplexml_load_file()" but I dont know how to get the file name of that xml page.

So how could I get the content of that xml page by calling the api redirect me to it using PHP?

  • 写回答

1条回答 默认 最新

  • doumu2172 2013-05-13 16:00
    关注

    You could use file_get_contents() and use simplexml_load_string() instead. http://www.php.net/manual/en/function.simplexml-load-string.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 表达式必须是可修改的左值
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题