Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

मैं PHP के साथ एक साथ कई यूआरएल खोलने के लिए कर्ल का उपयोग कैसे कर सकता हूं?

आप प्रत्येक कर्ल हैंडल को उसी तरह सेट करते हैं, फिर उन्हें curl_multi_ में जोड़ते हैं सँभालना। देखने के लिए कार्य हैं curl_multi_* फ़ंक्शन यहां प्रलेखित . हालांकि, मेरे अनुभव में, एक साथ बहुत से URL लोड करने का प्रयास करने में समस्याएँ थीं (हालाँकि मुझे इस समय मेरे नोट्स नहीं मिल रहे हैं), इसलिए पिछली बार जब मैंने curl_mutli_ का उपयोग किया था , मैंने इसे एक बार में 5 URL के बैच करने के लिए सेट किया है।

संपादित करें :मेरे पास curl_multi_ . का उपयोग कर रहे कोड का एक छोटा संस्करण है :

संपादित करें :थोड़ा फिर से लिखा गया और बहुत सारी अतिरिक्त टिप्पणियाँ, जो उम्मीद से मदद करेंगी।

// -- create all the individual cURL handles and set their options
$curl_handles = array();
foreach ($urls as $url) {
    $curl_handles[$url] = curl_init();
    curl_setopt($curl_handles[$url], CURLOPT_URL, $url);
    // set other curl options here
}

// -- start going through the cURL handles and running them
$curl_multi_handle = curl_multi_init();

$i = 0; // count where we are in the list so we can break up the runs into smaller blocks
$block = array(); // to accumulate the curl_handles for each group we'll run simultaneously

foreach ($curl_handles as $a_curl_handle) {
    $i++; // increment the position-counter

    // add the handle to the curl_multi_handle and to our tracking "block"
    curl_multi_add_handle($curl_multi_handle, $a_curl_handle);
    $block[] = $a_curl_handle;

    // -- check to see if we've got a "full block" to run or if we're at the end of out list of handles
    if (($i % BLOCK_SIZE == 0) or ($i == count($curl_handles))) {
        // -- run the block

        $running = NULL;
        do {
            // track the previous loop's number of handles still running so we can tell if it changes
            $running_before = $running;

            // run the block or check on the running block and get the number of sites still running in $running
            curl_multi_exec($curl_multi_handle, $running);

            // if the number of sites still running changed, print out a message with the number of sites that are still running.
            if ($running != $running_before) {
                echo("Waiting for $running sites to finish...\n");
            }
        } while ($running > 0);

        // -- once the number still running is 0, curl_multi_ is done, so check the results
        foreach ($block as $handle) {
            // HTTP response code
            $code = curl_getinfo($handle,  CURLINFO_HTTP_CODE);

            // cURL error number
            $curl_errno = curl_errno($handle);

            // cURL error message
            $curl_error = curl_error($handle);

            // output if there was an error
            if ($curl_error) {
                echo("    *** cURL error: ($curl_errno) $curl_error\n");
            }

            // remove the (used) handle from the curl_multi_handle
            curl_multi_remove_handle($curl_multi_handle, $handle);
        }

        // reset the block to empty, since we've run its curl_handles
        $block = array();
    }
}

// close the curl_multi_handle once we're done
curl_multi_close($curl_multi_handle);

यह देखते हुए कि आपको यूआरएल से कुछ भी वापस नहीं चाहिए, आपको शायद वहां बहुत कुछ की आवश्यकता नहीं है, लेकिन इस तरह मैंने अनुरोधों को BLOCK_SIZE के ब्लॉक में विभाजित किया है। , आगे बढ़ने से पहले प्रत्येक ब्लॉक के चलने की प्रतीक्षा की, और cURL से त्रुटियों को पकड़ा।




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. सिद्धांत 2 कमांड लाइन उपकरण; एमएएमपी और mysql.sock

  2. SQL 2 टेबल से 1 टेबल में शामिल होता है

  3. Mysql में अनुक्रमिक डेटा कैसे स्टोर करें

  4. फ्रेशर + अनुभवी के लिए सामान्य MySql साक्षात्कार प्रश्न और उत्तर

  5. MySQL में विपरीत क्रम के साथ 2 परिणाम सेट कैसे मर्ज करें