怎么使用post提交json数据
程序员文章站
2022-05-07 19:42:08
...
如何使用post提交json数据
如何使用php的post提交json数据...
------解决方案--------------------
以下是一个例子,你可以按需扩展。
如何使用php的post提交json数据...
------解决方案--------------------
以下是一个例子,你可以按需扩展。
$post_data =
array(
'name'=>'aaa',
'age'=>45,
);
$url='http://www.example.com/example.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result=curl_exec($ch);
echo $result;
相关文章
相关视频