最佳答案
我正在尝试使用 PHP 和 cURL 执行 DELETE http 请求。
我在很多地方读过如何做这件事,但似乎没有一样对我有用。
我是这么做的:
public function curl_req($path,$json,$req)
{
$ch = curl_init($this->__url.$path);
$data = json_encode($json);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $req);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json','Content-Length: ' . strlen($data)));
$result = curl_exec($ch);
$result = json_decode($result);
return $result;
}
然后我继续使用我的函数:
public function deleteUser($extid)
{
$path = "/rest/user/".$extid."/;token=".$this->__token;
$result = $this->curl_req($path,"","DELETE");
return $result;
}
这给了我 HTTP 内部服务器 ERROR。 在使用与 GET 和 POST 相同的 curl _ req 方法的其他函数中,一切都很顺利。
那我做错了什么?