我正在使用Laravel 5.2
,我刚创建了一个类,我创建了Web请求以接收json文件。
所以课程的部分如下:
public function request(){
$request = 'https://example.com/someotherthings/var='.$value1.'&var2='.$value2';
}
作为回应我得到:
https://example.com/someotherthings/var=valueOfValue1&var2=valueOfValue2
问题是请求是错误的,我没有收到回应。
答案 0 :(得分:0)
删除最后一个引号:
$request = 'https://example.com/someotherthings/var='.$value1.'&var2='.$value2';
变为:
$request = 'https://example.com/someotherthings/var='.$value1.'&var2='.$value2;
然后安全编码网址:
$urlEncodedRequest = urlencode($request);