PHP curl传 json字符串
Posted 没事就更
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP curl传 json字符串相关的知识,希望对你有一定的参考价值。
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false );
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
‘Content-Type: application/json; charset=utf-8‘,
‘Content-Length: ‘.strlen($data))
);
以上是关于PHP curl传 json字符串的主要内容,如果未能解决你的问题,请参考以下文章
如何从 CURL 响应 PHP API 的 JSON 字符串中删除引号、不需要的数据
json的本质是字符串,那么可以通过url加参数的方式传递json字符串吗
使用cURL PHP获取instagram公共JSON feed
PHP使用CURL设置header头传参以及设置Content-Type: application/json类型的后台数据接收