Top "Curl-multi" questions

is refer to multiple synchronous curl transfers

PHP Multiple Curl Requests

I'm currently using Curl for PHP a lot. It takes a lot of time to get results of about 100 pages …

php curl curl-multi
How to fix curl: (35) Cannot communicate securely with peer: no common encryption algorithm(s)

I am trying to access and download some .torrent files from https://torrage.com using php curl. But nothing happens , …

php ssl curl https curl-multi
understanding php curl_multi_exec

I'm trying to understand curl_multi_exec. I've copied a piece of the manual example here. So I'm wondering, how …

php curl curl-multi
Faster alternative to file_get_contents()

Currently I'm using file_get_contents() to submit GET data to an array of sites, but upon execution of the …

php curl file-get-contents curl-multi
How can I use cURL to open multiple URLs simultaneously with PHP?

Here is my current code: $SQL = mysql_query("SELECT url FROM urls") or die(mysql_error()); //Query the urls table …

php mysql curl curl-multi
Asynchronous HTTP requests in PHP

Is there any sane way to make a HTTP request asynchronously in PHP without throwing out the response? I.e., …

php http asynchronous request curl-multi
PHP curl_multi_getcontent returns null

I have been following this tutorial on how to use curl_multi. http://arguments.callee.info/2010/02/21/multiple-curl-requests-with-php/ I can't tell …

php curl curl-multi
PHP cURL multi_exec delay between requests

If I run a standard cURL_multi_exec function (example below), I get all cURL handles requested at once. I …

php multithreading curl delay curl-multi
php - multiple requests with curl (NOT 'multi-threaded')

If i want to do multiple things (that require cookies) with curl, for example: login to (my own) blog then …

php curl curl-multi
Asynchronous/parallel HTTP requests using PHP curl_multi

I recently looked into the possibility of making multiple requests with curl. I may not be understanding it fully, so …

php asynchronous curl parallel-processing curl-multi