在 PHP 中发出 JSON POST 请求
使用 JSON 数据发送 POST 请求是 Web 开发中的常见任务。在 PHP 中,CURL 是处理这些请求的优秀库。
示例代码
以下 PHP 代码演示了如何使用 CURL 发送 JSON POST 请求:
$url = "your url"; $content = json_encode("your data to be sent"); $curl = curl_init($url); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type: application/json")); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $content); $json_response = curl_exec($curl); $status = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ( $status != 201 ) { die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl)); } curl_close($curl); $response = json_decode($json_response, true);
代码说明
curl_setopt() 设置会话的各种选项,例如:
如果 HTTP 状态代码不是 201(已创建) ,会抛出错误。
以上是如何使用 CURL 在 PHP 中发送 JSON POST 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!