我在我的应用程序的客户端有这个代码:
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length:0 ' )
);
$body = curl_exec($ch);
在服务器文件中:
$ch = curl_init($this->modelAddress);
$data = array("params"=>array("resource" => "artist","operation" => $operation,"params"=>$params));
$data_string = json_encode($data);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
他们是由两个不同的人组成的,我想问一下最正确的是什么
使用'Content-Length:0'
代替'Content-Length:'.strlen($data_string)
时更好。
这是POST / GET方法的唯一问题?
我在网上搜索了这个解释,但我什么都没发现
答案 0 :(得分:5)
如果您对curl使用http PUT
,则必须指定Content-Length
标头。否则,GET
和POST
的卷曲会自动处理它。
例如,如果您使用data
发布带有curl的以下CURLOPT_POSTFIELDS
。然后curl会自动添加标题data
的长度。
$data = "name=alex&email=none!";
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
为了更好地理解,请使用详细模式运行您的卷曲代码,然后您将看到它如何处理请求和响应。
curl_setopt($ch, CURLOPT_VERBOSE, true);