在后端写了一个curl get请求同事的接口
$data = Dhttp::curlGet('https://www.xxxxxx.com/r/w/w?token=1&money=1&type=1&courseName=文字');
返回了 HTTP Status 400 – Bad Request
然后不知道问题出在哪里,上网上搜,说是参数有问题
然后进行参数排查,发现courseName 参数传文字就提示400
传数字和英文的时候就是正常的
然后使用了
http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。
$deductData = array(
'token' => '1',
'money' => 1,
'type' => 1,
'courseName' => '测试'
);
$giveCourseScholarship = Dhttp::curlGet("https://www.xxxxxx.com/r/w/w?" . http_build_query($deductData));
这样就可以了
共勉