cURL로 $ _POST 값 전달


답변:


168

잘 작동합니다.

$data = array('name' => 'Ross', 'php_master' => true);

// You can POST a file by prefixing with an @ (for <input type="file"> fields)
$data['file'] = '@/home/user/world.jpg';

$handle = curl_init($url);
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_exec($handle);
curl_close($handle)

여기에는 CURLOPT_POSTHTTP POST를 켜고 CURLOPT_POSTFIELDS제출할 게시물 데이터 배열을 포함하는 두 가지 옵션이 있습니다 . POST <form>s에 데이터를 제출하는 데 사용할 수 있습니다 .


curl_setopt($handle, CURLOPT_POSTFIELDS, $data);$ data를 두 가지 형식으로 취하고 이것이 포스트 데이터가 인코딩되는 방식을 결정한다는 점에 유의하는 것이 중요합니다 .

  1. $dataas an array(): 데이터가 multipart/form-data서버에서 항상 허용되는 것은 아닙니다.

    $data = array('name' => 'Ross', 'php_master' => true);
    curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
    
  2. $dataURL 인코딩 문자열로 : 데이터는 application/x-www-form-urlencoded제출 된 html 양식 데이터의 기본 인코딩 인 으로 전송됩니다 .

    $data = array('name' => 'Ross', 'php_master' => true);
    curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($data));
    

다른 사람들이 시간을 절약하는 데 도움이되기를 바랍니다.

보다:


귀하의 메모를 통해 최소한 한 시간은 디버깅 할 수있었습니다. 감사.
Vivek Kumar

30

Ross는 일반적인 매개 변수 / 값 형식을 URL에 게시 하는 데 올바른 아이디어가지고 있습니다.

최근에 매개 변수 쌍없이 일부 XML을 Content-Type "text / xml"로 게시해야하는 상황이 발생했습니다. 이렇게하는 방법은 다음과 같습니다.

$xml = '<?xml version="1.0"?><stuff><child>foo</child><child>bar</child></stuff>';
$httpRequest = curl_init();

curl_setopt($httpRequest, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($httpRequest, CURLOPT_HTTPHEADER, array("Content-Type:  text/xml"));
curl_setopt($httpRequest, CURLOPT_POST, 1);
curl_setopt($httpRequest, CURLOPT_HEADER, 1);

curl_setopt($httpRequest, CURLOPT_URL, $url);
curl_setopt($httpRequest, CURLOPT_POSTFIELDS, $xml);

$returnHeader = curl_exec($httpRequest);
curl_close($httpRequest);

제 경우에는 HTTP 응답 헤더에서 일부 값을 구문 분석해야하므로 반드시 CURLOPT_RETURNTRANSFER또는 CURLOPT_HEADER.


1
이것은 포스터가 요구하는 것이 아니라 내가 찾던 바로 그것입니다. 감사합니다!
davr

다른 사람이 도움이되었다 니 다행입니다.
Mark Biek

1
"curl_setopt ($ httpRequest, CURLOPT_HTTPHEADER, array ("Content-Type : text / xml "));" 이미 몇 시간이 걸린 문제를 해결했습니다! 고마워요 :)
Alexei Tenitski

안녕 마크, 시간이 있으면 도와 주 시겠어요? .. 제발. 여기를 클릭
jayAnn

urlencoded로 보낼 때 내 xml 데이터가 수락되지 않은 이유를 알아 내려고 노력했습니다. Content-Type과 urlencode가 나를 구했습니다. 감사.
Samuel

3
$query_string = "";

if ($_POST) {
    $kv = array();
    foreach ($_POST as $key => $value) {
        $kv[] = stripslashes($key) . "=" . stripslashes($value);
    }
    $query_string = join("&", $kv);
}

if (!function_exists('curl_init')){
    die('Sorry cURL is not installed!');
}

$url = 'https://www.abcd.com/servlet/';

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, count($kv));
curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string);

curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);

$result = curl_exec($ch);

curl_close($ch);

3

cURL을 사용하는 또 다른 간단한 PHP 예제 :

<?php
    $ch = curl_init();                    // Initiate cURL
    $url = "http://www.somesite.com/curl_example.php"; // Where you want to post data
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_POST, true);  // Tell cURL you want to post something
    curl_setopt($ch, CURLOPT_POSTFIELDS, "var1=value1&var2=value2&var_n=value_n"); // Define what you want to post
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the output in string format
    $output = curl_exec ($ch); // Execute

    curl_close ($ch); // Close cURL handle

    var_dump($output); // Show output
?>

예 : http://devzone.co.in/post-data-using-curl-in-php-a-simple-example/

사용하는 대신 curl_setopt사용할 수 있습니다 curl_setopt_array.

http://php.net/manual/en/function.curl-setopt-array.php


감사합니다!! -귀하의 코드 curl_setopt($ch, CURLOPT_POSTFIELDS, "var1=value1&var2=value2&var_n=value_n"); // Define what you want to post는 내가 찾고 있던 것을 제공했습니다. :)
asugrue15



1
$url='Your url'; // Specify your url
$data= array('parameterkey1'=>value,'parameterkey2'=>value); // Add parameters in key value
$ch = curl_init(); // Initialize cURL
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);

1
이 답변을 확장 할 수 있습니까? 몇 줄의 코드는 답이 아닙니다.
Rich Benner

1) URL 지정 2) 매개 변수 배열 생성 3) curl 초기화 4) curl의 필수 옵션 설정 5) Curl 실행 6) Close Curl
Aniket B 2016

0
<?php
    function executeCurl($arrOptions) {

        $mixCH = curl_init();

        foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue) {
            curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue);
        }

        $mixResponse = curl_exec($mixCH);
        curl_close($mixCH);
        return $mixResponse;
    }

    // If any HTTP authentication is needed.
    $username = 'http-auth-username';
    $password = 'http-auth-password';

    $requestType = 'POST'; // This can be PUT or POST

    // This is a sample array. You can use $arrPostData = $_POST
    $arrPostData = array(
        'key1'  => 'value-1-for-k1y-1',
        'key2'  => 'value-2-for-key-2',
        'key3'  => array(
                'key31'   => 'value-for-key-3-1',
                'key32'   => array(
                    'key321' => 'value-for-key321'
                )
        ),
        'key4'  => array(
            'key'   => 'value'
        )
    );

    // You can set your post data
    $postData = http_build_query($arrPostData); // Raw PHP array

    $postData = json_encode($arrPostData); // Only USE this when request JSON data.

    $mixResponse = executeCurl(array(
        CURLOPT_URL => 'http://whatever-your-request-url.com/xyz/yii',
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_HTTPGET => true,
        CURLOPT_VERBOSE => true,
        CURLOPT_AUTOREFERER => true,
        CURLOPT_CUSTOMREQUEST => $requestType,
        CURLOPT_POSTFIELDS  => $postData,
        CURLOPT_HTTPHEADER  => array(
            "X-HTTP-Method-Override: " . $requestType,
            'Content-Type: application/json', // Only USE this when requesting JSON data
        ),

        // If HTTP authentication is required, use the below lines.
        CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
        CURLOPT_USERPWD  => $username. ':' . $password
    ));

    // $mixResponse contains your server response.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.