ส่งค่า $ _POST ด้วย cURL


คำตอบ:


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_POSTซึ่งจะเปิด HTTP POST และCURLOPT_POSTFIELDSมีอาร์เรย์ของข้อมูลโพสต์ของเราที่จะส่ง สามารถใช้เพื่อส่งข้อมูลไปยังPOST <form>s


สิ่งสำคัญคือต้องทราบว่าcurl_setopt($handle, CURLOPT_POSTFIELDS, $data);รับข้อมูล $ ในสองรูปแบบและสิ่งนี้กำหนดว่าจะเข้ารหัสข้อมูลโพสต์อย่างไร

  1. $dataเป็นarray(): ข้อมูลจะถูกส่งmultipart/form-dataโดยที่เซิร์ฟเวอร์ไม่ยอมรับเสมอไป

    $data = array('name' => 'Ross', 'php_master' => true);
    curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
    
  2. $dataเป็นสตริงที่เข้ารหัส url: ข้อมูลจะถูกส่งเป็น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_RETURNTRANSFERCURLOPT_HEADER


1
นี่ไม่ใช่สิ่งที่ผู้โพสต์ถาม แต่มันเป็นสิ่งที่ฉันกำลังมองหาอยู่ขอบคุณ!
davr

ฉันดีใจที่มีคนอื่นพบว่ามันเป็นประโยชน์
Mark Biek

1
"curl_setopt ($ httpRequest, CURLOPT_HTTPHEADER, array (" Content-Type: text / xml ")) ของคุณ; แก้ไขบางอย่างที่ใช้เวลาสองสามชั่วโมงแล้ว! ขอบคุณมาก :)
Alexei Tenitski

สวัสดีคุณมาร์คถ้าคุณมีเวลาคุณช่วยฉันออกไปได้ไหม .. ได้โปรด. คลิกที่นี่
jayAnn

เราใช้เวลาในการพยายามหาสาเหตุว่าทำไมข้อมูล xml ของฉันจึงไม่ได้รับการยอมรับเมื่อส่งเป็น urlencoded ประเภทเนื้อหาและไม่มี urlencode ช่วยฉันไว้ ขอบคุณ.
ซามูเอล

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

อีกตัวอย่างง่ายๆของ PHP ในการใช้ cURL:

<?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) Execute Curl 6) Close Curl
Aniket B

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.