Quote Grabber (XML/PHP) on Fidelity

Cool setup actually.

I love the 'parallel' connections. Could've done this on threads as well. Did you write this?

$multi = new CURL();

foreach($url_list as $url) {
$multi->addSession($url, array(CURLOPT_HEADER => 0, CURLOPT_RETURNTRANSFER => 1));
}
 
Back
Top