? ? ?最近由于开放平台项目的需要,在写php版的sdk,过程中碰到一些问题,做个记号,以免后面忘记
?
? ? Php发送请求参数丢失:
? curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
? $reponse = curl_exec($ch);
? 发现请求到达服务端后,postBodyString的内容并没有出现在请求里,参数丢失
?
? ?解决方法:
? ?使用Header进行以下设置:
? ?$headers = array('content-type: application/x-www-form-urlencoded