当前位置:伍佰目录 » 站长资讯 » 站长资讯 » 推广策划 » 文章详细

PHP 使用 curl 提交 json 格式数据

来源:网络转载 浏览:315次 时间:2023-03-17
$data = ['name' => 'lvesu', 'value' => 'test json'];
$data_string = json_encode($data);
 
$ch = curl_init('http://localhost/test_json');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json',
    'Content-Length: ' . strlen($data_string))
);
 
$result = curl_exec($ch);



伍佰目录声明:本站部分文章来源于网络,版权属于原作者所有。如有转载或引用文章/图片涉及版权问题,请联系我们处理.我们将在第一时间删除! 联系邮箱:tsk@qq.com

快速链接

最新收录

最新点入