curl pur delete post get请求类型参数

Posted 小小小尘埃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl pur delete post get请求类型参数相关的知识,希望对你有一定的参考价值。

curl如何发起DELETE/PUT请求

DELETE:

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘DELETE‘);

PUT:

curl_setopt($ch, CURLOPT_PUT, true);

GET:

curl_setopt($ch, CURLOPT_HTTPGET, true);

POST:

curl_setopt($ch, CURLOPT_POST, true);

以上是关于curl pur delete post get请求类型参数的主要内容,如果未能解决你的问题,请参考以下文章

get,post,put,delete啥意思

REST模式中HTTP请求方法(GET,POST,PUT,DELETE)

Chrome 中的 AJAX 发送选项而不是 GET/POST/PUT/DELETE?

(004)Linux http命令curl访问url

curl命令行 get/post请求

curl发送get请求带param