php http post 如何改写? 本帖最后由 xcvzzq 于 2015-09-16 12:30:18 编辑 如何把以下代码 curl-hcontent-type:application/json-xpost-d'{ aaa:aaa bb:bb, cc:{ cc1:cc1, cc2:cc3 } }'http://xxx 转为phppost代码? 写的如下,不成功
php http post 如何改写?
本帖最后由 xcvzzq 于 2015-09-16 12:30:18 编辑
如何把以下代码
curl -h content-type: application/json -x post -d '{
aaa: aaa
bb: bb,
cc: {
cc1: cc1,
cc2: cc3
}
}' http://xxx
转为php post代码?
写的如下,不成功
$fields = array(
aa => aa,
bb => bb
);
$response = http_post_fields(http://xxx, $fields);
echo $response;
------解决思路----------------------
$fields = json_encode($fields);
------解决思路----------------------
php 测试
aa,
bb => bb
);
$fiel【本文来自鸿网互联 (http://www.68idc.cn)】dsdate = json_encode($fields);
$ch = curl_init(http://xxx);
curl_setopt($ch, curlopt_header, content-type: application/json);
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_postfields, $fieldsdate);
$output = curl_exec($ch);
if(curl_errno($ch)){//出错则显示错误信息
print curl_error($ch);
}
curl_close($ch);
echo $output;
?>
php如何使用http curl 传输数据
http://www.paymoon.com/index.php/2015/09/17/how-to-use-php-execute-curl/#phpcurl