如何向Web服务发送外部请求

时间:2014-05-06 14:16:31

标签: php symfony

我需要向外部Web服务发送请求,我的Web服务返回一个json。这两个项目是当地的。第一个是localhost / symfony ...和第二个localhost / login / index.php

  $uri = "http://localhost/login/index.php";
  $request =  Request::create($uri, 'GET', array('test' => 'test'));

我不知道如何发送请求并检索响应。

2 个答案:

答案 0 :(得分:2)

请求对象供内部使用。您最好使用HTTP客户端,如

答案 1 :(得分:0)

您可以使用file_get_contents()从您的网络服务获取json格式的数据,稍后您可以使用json_decode()解析它。