如何使用php将请求发送到url并以xml格式接收响应

时间:2014-05-14 07:42:49

标签: php curl httprequest

请在浏览器中找到以下提到的响应XML值的URL链接。使用PHP

在变量中收到相同的repsonse

在单个PHP页面中,我应该提出URL请求,并且应该在同一页面中获得响应。

   http://localhost:8090/solr/salesreport/select?q=salesdates:[2007-05-01 TO 2014-05-15]&wt=xml&rows=10&indent=true 

请审核我的问题并提供有价值的解决方案。

3 个答案:

答案 0 :(得分:1)

$xmlDoc = new DOMDocument();
$xmlDoc->loadXML(file_get_contents("http://203.196.191.92:8090/solr/salesreport/select?q=salesdates:[2007-05-01TO2014-05-13]&wt=xml&rows=10&indent=true"));

答案 1 :(得分:0)

非常感谢您的支持。我找到了解决方案

$url = 'http://localhost:8090/solr/salesreport/select?q='.$grystrres.'&wt=xml&rows=10&indent=true';
$xml = simplexml_load_file($url);
print_r($xml);

答案 2 :(得分:-1)

$variable = file_get_contents('http://203.196.191.92:8090/solr/salesreport/select?q=salesdates:[2007-05-01TO2014-05-13]&wt=xml&rows=10&indent=true');