php post 请求 Content-Type: application/json;charset=utf8
时间: 2024-01-29 20:03:28 浏览: 133
在 PHP 中进行 POST 请求时,可以使用 cURL 库来实现。如果需要发送 JSON 格式的数据,需要设置请求头的 Content-Type 为 application/json;charset=utf-8。
以下是一个示例代码:
```
$data = array('key1' => 'value1', 'key2' => 'value2');
$data_string = json_encode($data);
$ch = curl_init('http://example.com/api');
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;charset=utf-8',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
curl_close($ch);
```
在上面的代码中,首先定义了一个数组 $data,然后使用 json_encode() 方法将其转换为 JSON 格式的字符串 $data_string。
接下来,使用 cURL 库进行 POST 请求,设置请求方式为 POST,请求体为 $data_string,同时设置请求头的 Content-Type 为 application/json;charset=utf-8。
最后执行请求,并关闭 cURL 句柄。执行结果保存在 $result 变量中。
阅读全文