Jump to content

Recommended Posts

Hi,

 

I am at a loss as to how to implement this. I would like to be able to automatically assign a number of urls taken from a file to x amount of curl_multi handles determined by the user on the form, so if i had 100 urls, and the user types 2 threads, each handle will process and go through 50 urls each.

 

The problems I face are how do I get php to create the number of handles based on the users' preference, are variable variables the only way? Because I really don't want to go there as my head will explode.

 

Also, how do I ensure that thread A can not process urls that Thread B is currently working on? Could this be done by popping the url off an array just before the thread goes to work on it?

 

Many thanks, Tom.

It is supposed to process multiple URLs in parallel, but not in the way you're saying.

 

Say you have your URLs in an array called $urls. Then you can do this:

 

<?php
$mh = curl_init_multi();

$handles = array();
foreach ($urls as $i => $url) {
$handles[$i] = curl_init($url);
curl_setopt($handles[$i], CURLOPT_HEADER, false);
curl_setopt($handles[$i], CURLOPT_RETURNTRANSFER, true);

curl_multi_add_handle($mh, $handles[$i]);
}

do {
curl_multi_exec($mh, $running);
} while ($running > 0);

// get content using curl_multi_getcontent() here

foreach ($handles as $handle) {
curl_multi_remove_handle($mh, $handle);
curl_close($handle);
}

curl_multi_close($mh);

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.