建立一个PUT接口

发送的HTTP头应该是 Content-Type=application/json 然后读取客户端发过来的数据 parse_str(file_get_contents('php://input'), $data);

主动请求一个PUT接口 (curl)

curl_setopt($handle, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($handle, CURLOPT_POSTFIELDS, $data); //设置请求体,提交数据包