使用 PHP 发布 JSON 数据
此查询寻求有关通过 PHP 中的 POST 请求发送 JSON 数据的指导。以下代码片段演示了如何使用 CURL 来实现此目的:
<?php $url = "http://domain/OnLeagueRest/resources/onleague/Account/CreditAccount"; $data = json_encode([ 'userID' => 'a7664093-502e-4d2b-bf30-25a2b26d6021', 'itemKind' => 0, 'value' => 1, 'description' => 'Saude', 'itemID' => '03e76d0a-8bab-11e0-8250-000c29b481aa' ]); $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-type: application/json")); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $response = curl_exec($ch); $status = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ( $status != 201 ) { die("Error: call to URL $url failed with status $status, response $response, curl_error " . curl_error($ch) . ", curl_errno " . curl_errno($ch)); } curl_close($ch); $response = json_decode($response, true); ?>
在此示例中,$url 表示目标 URL,$data 包含将发布的 JSON 数据。 curl_init() 函数启动 CURL 会话,随后的curl_setopt() 调用设置必要的选项。 curl_exec() 函数发送请求并返回服务器的响应,然后根据需要对其进行处理和解码。
以上是如何使用 PHP cURL 通过 POST 请求发送 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!