반응형
PHP cURL HTTP PUT
cURL을 사용하여 HTTP PUT 요청을 작성하려고 하는데 실행할 수 없습니다.많은 튜토리얼을 읽었지만 실제로 작동되는 튜토리얼은 하나도 없습니다.현재 코드는 다음과 같습니다.
$filedata = array('metadata' => $rdfxml);
$ch = curl_init($url);
$header = "Content-Type: multipart/form-data; boundary='123456f'";
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array($header));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($filedata));
$returned = curl_exec($ch);
if (curl_error($ch))
{
print curl_error($ch);
}
else
{
print 'ret: ' .$returned;
}
PHP PEAR도 사용해 봤지만 같은 결과가 나왔습니다.문제는 저장소에서 메타데이터가 설정되지 않았다고 표시된다는 것입니다.정말 도움이 필요해요!감사합니다!
오늘 내가 직접 해 봤는데...여기 제가 가지고 있는 코드가 있어요
$data = array("a" => $a);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($data));
$response = curl_exec($ch);
if (!$response)
{
return false;
}
src: http://www.lornajane.net/posts/2009/putting-data-fields-with-php-curl
Chrome용 우체부를 사용하여 CODE를 선택하면 다음과 같은 메시지가 나타납니다.또, 기능합니다.
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://blablabla.com/comorl",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => "{\n \"customer\" : \"con\",\n \"customerID\" : \"5108\",\n \"customerEmail\" : \"jordi@correo.es\",\n \"Phone\" : \"34600000000\",\n \"Active\" : false,\n \"AudioWelcome\" : \"https://audio.com/welcome-defecto-es.mp3\"\n\n}",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
"content-type: application/json",
"x-api-key: whateveriyouneedinyourheader"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
?>
POST ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★」방법은 PUT을 사용해야 .http_build_query
이치
curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query( $postArr ) );
두 가지 기준이 혼합되어 있습니다.
가 발생하였습니다.$header = "Content-Type: multipart/form-data; boundary='123456f'";
★★http_build_query($filedata)
"Content-Type: application/x-www-form-urlencoded" 입니다.
언급URL : https://stackoverflow.com/questions/5043525/php-curl-http-put
반응형
'IT' 카테고리의 다른 글
어떤 클래스가 다른 클래스의 서브 클래스인지(런타임 시) 확인하려면 어떻게 해야 합니까? (0) | 2022.10.30 |
---|---|
Java 콜 스택의 최대 깊이는 얼마입니까? (0) | 2022.10.30 |
다른 테이블에 존재하지 않음으로써 SQL의 특정 행 표시 (0) | 2022.10.30 |
람다 함수 폐쇄는 무엇을 캡처합니까? (0) | 2022.10.30 |
json_encode()를 사용하여 PHP 어레이에서 JSON 어레이로. (0) | 2022.10.30 |