이 기사는 주로 컬을 사용하여 PHP에서 json 형식으로 숫자를 제출하는 방법을 공유합니다. 도움이 되기를 바랍니다.
$data = array("name" => "Hagrid", "age" => "36"); $data_string = json_encode($data); $ch = curl_init('http://api.local/rest/users'); 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', 'Content-Length: ' . strlen($data_string)) ); $result = curl_exec($ch);
관련 권장 사항:
PHPAPI 인터페이스 출력 json 형식 데이터 샘플 코드
위 내용은 컬을 사용하여 PHP에서 json 형식 데이터를 제출하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!