POST로 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 데이터가 포함되어 있습니다. 컬_init() 함수는 CURL 세션을 시작하고 후속 컬_setopt() 호출은 필요한 옵션을 설정합니다. 컬_exec() 함수는 요청을 보내고 서버의 응답을 반환한 후 필요에 따라 처리 및 디코딩됩니다.
위 내용은 PHP cURL을 사용하여 POST 요청을 통해 JSON 데이터를 보내는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!