我需要向外部Web服务发送请求,我的Web服务返回一个json。这两个项目是当地的。第一个是localhost / symfony ...和第二个localhost / login / index.php
$uri = "http://localhost/login/index.php";
$request = Request::create($uri, 'GET', array('test' => 'test'));
我不知道如何发送请求并检索响应。
答案 0 :(得分:2)
答案 1 :(得分:0)
您可以使用file_get_contents()从您的网络服务获取json格式的数据,稍后您可以使用json_decode()解析它。