curl post 用json方式

Posted brady-wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl post 用json方式相关的知识,希望对你有一定的参考价值。

if(!function_exists(‘tps_curl_post3‘)){
function tps_curl_post3($url, $postData) {
$postData = json_encode($postData);
$curl = curl_init(); //初始化
curl_setopt($curl,CURLOPT_URL,$url); //设置url
curl_setopt($curl,CURLOPT_HTTPAUTH,CURLAUTH_BASIC); //设置http验证方法
curl_setopt($curl, CURLOPT_TIMEOUT,30);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1); //设置curl_exec获取的信息的返回方式
curl_setopt($curl,CURLOPT_POST,1); //设置发送方式为post请求
curl_setopt($curl,CURLOPT_POSTFIELDS,$postData); //设置post的数据

curl_setopt($curl, CURLOPT_HTTPHEADER, array(
‘Content-Type: application/json‘,
‘Content-Length: ‘ . strlen($postData))
);

$result = curl_exec($curl);
curl_close($curl);
return json_decode($result,true);
}
}




















以上是关于curl post 用json方式的主要内容,如果未能解决你的问题,请参考以下文章

php curl get 参数

php用curl的post方法传递json包的时候,接受方是怎么获取的呢

thinkphp5.0 CURL用post请求接口数据

php curl_init json 有个问题让我搞不清楚哪里出了问题

iosafn怎么用post上传json数据

如何向php服务器发送数据为json的post请求