복붙노트

cURL을 사용하여 $ _POST 값 전달

PHP

cURL을 사용하여 $ _POST 값 전달

cURL을 사용하여 $ _POST 값을 페이지에 어떻게 전달합니까?

해결법

  1. ==============================

    1.잘 작동해야합니다.

    잘 작동해야합니다.

    $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)
    

    여기에는 HTTP POST를 켜는 CURLOPT_POST와 제출할 POST 데이터의 배열을 포함하는 CURLOPT_POSTFIELDS의 두 가지 옵션이 있습니다. 이것은 POST

    에 데이터를 제출하는 데 사용할 수 있습니다.

    curl_setopt ($ handle, CURLOPT_POSTFIELDS, $ data); $ 데이터를 두 가지 형식으로 가져오고, 이로 인해 게시 데이터가 인코딩되는 방식이 결정됩니다.

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

    만나다:

  2. ==============================

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

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

    나는 최근에 필자가 어떤 XML을 Content-Type "text / xml"으로 POST 할 필요가있는 상황에 직면했다.

    $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를 반드시 설정할 필요는 없습니다.

  3. ==============================

    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);
    
  4. ==============================

    4.cURL을 사용하는 간단한 PHP 예제 :

    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

  5. ==============================

    5.어떻게하는지 보여주는 예제가있는이 페이지를 확인하십시오.

    어떻게하는지 보여주는 예제가있는이 페이지를 확인하십시오.

  6. ==============================

    6.cUrl PHP 문서 페이지를 확인하십시오. 예제 스크립트만으로는 충분하지 않습니다.

    cUrl PHP 문서 페이지를 확인하십시오. 예제 스크립트만으로는 충분하지 않습니다.

  7. ==============================

    7.

    $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);
    
  8. ==============================

    8.

    <?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.
    
  9. from https://stackoverflow.com/questions/28395/passing-post-values-with-curl by cc-by-sa and MIT license