Is there a way to PHP make asynchronous http calls? I don't care about the response, I just want to do something like file_get_contents(), but not wait on the request to finish before executing the rest of my code. This would be super useful for setting off "events" of a sort in my application, or triggering long processes.

Any ideas?

link|improve this question

1  
one function - 'curl_multi', look in the php docs for it. Should solve your problems – James Butler Mar 17 '11 at 0:09
feedback

10 Answers

up vote 24 down vote accepted

The answer I'd previously accepted didn't work. It still waited for responses. This does work though, taken from http://stackoverflow.com/questions/962915/how-do-i-make-an-asynchronous-get-request-in-php

function curl_post_async($url, $params)
{
    foreach ($params as $key => &$val) {
      if (is_array($val)) $val = implode(',', $val);
        $post_params[] = $key.'='.urlencode($val);
    }
    $post_string = implode('&', $post_params);

    $parts=parse_url($url);

    $fp = fsockopen($parts['host'],
        isset($parts['port'])?$parts['port']:80,
        $errno, $errstr, 30);

    $out = "POST ".$parts['path']." HTTP/1.1\r\n";
    $out.= "Host: ".$parts['host']."\r\n";
    $out.= "Content-Type: application/x-www-form-urlencoded\r\n";
    $out.= "Content-Length: ".strlen($post_string)."\r\n";
    $out.= "Connection: Close\r\n\r\n";
    if (isset($post_string)) $out.= $post_string;

    fwrite($fp, $out);
    fclose($fp);
}
link|improve this answer
If you look at the link you posted here, my answer includes a way to do GET requests as well. – catgofire Oct 15 '10 at 19:38
feedback

this needs php5, i stole it out of docs.php.net and edited the end.

I use it for monitoring when an error happens on a clients site, it sends data off to me without holding up the output

function do_post_request($url, $data, $optional_headers = null,$getresponse = false) {
      $params = array('http' => array(
                   'method' => 'POST',
                   'content' => $data
                ));
      if ($optional_headers !== null) {
         $params['http']['header'] = $optional_headers;
      }
      $ctx = stream_context_create($params);
      $fp = @fopen($url, 'rb', false, $ctx);
      if (!$fp) {
        return false;
      }
      if ($getresponse){
        $response = stream_get_contents($fp);
        return $response;
      }
    return true;
}
link|improve this answer
Awesome, i'll try that! – UltimateBrent Sep 24 '08 at 7:23
Is this the best solution for asynchronously running a .php file on the SAME site? – philfreo Mar 11 '10 at 19:03
2  
how are you wanting to call it? via the web (ie this method) or run it locally (eg like an include()) either way this is easy. running exec('php /path/to/file.php &'); (ie with the &) will work. But calling it via the web interface is safer (and more likely to work .. especially with file permissions and safemode restrictions) – Bruce Aldridge Mar 17 '10 at 20:29
Please see the below accepted answer. The one above turned out to not work like I wanted. – UltimateBrent May 31 '10 at 21:32
feedback

Wez Furlong demonstrated how to do it:

http://netevil.org/blog/2005/may/guru-multiplexing

he provided both PHP4- and PHP5-compatible implementations of it.

link|improve this answer
Link times out for me, but thanks for trying! – UltimateBrent Sep 24 '08 at 7:26
2  
Link doesn't timeout for me... just FYI – Jon Apr 7 '11 at 13:58
feedback

If you control the target that you want to call asynchronously (e.g. your own "longtask.php"), you can close the connection from that end, and both scripts will run in parallel. It works like this:

  1. quick.php opens longtask.php via cURL (no magic here)
  2. longtask.php closes the connection and continues (magic!)
  3. cURL returns to quick.php when the connection is closed
  4. Both tasks continue in parallel

I have tried this, and it works just fine. But quick.php won't know anything about how longtask.php is doing, unless you create some means of communication between the processes.

Try this code in longtask.php, before you do anything else. It will close the connection, but still continue to run (and suppress any output):

while(ob_get_level()) ob_end_clean();
header('Connection: close');
ignore_user_abort();
ob_start();
echo('Connection Closed');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush();
flush();

The code is copied from the PHP manual's user contributed notes and somewhat improved.

link|improve this answer
feedback
/**
 * Asynchronously execute/include a PHP file. Does not record the output of the file anywhere. 
 *
 * @param string $filename              file to execute, relative to calling script
 * @param string $options               (optional) arguments to pass to file via the command line
 */ 
function asyncInclude($filename, $options = '') {
    exec("/path/to/php -f {$filename} {$options} >> /dev/null &");
}
link|improve this answer
feedback

You can do trickery by using exec() to invoke something that can do HTTP requests, like wget, but you must direct all output from the program to somewhere, like a file or /dev/null, otherwise the PHP process will wait for that output.

If you want to separate the process from the apache thread entirely, try something like (I'm not sure about this, but I hope you get the idea):

exec('bash -c "wget -O (url goes here) > /dev/null 2>&1 &"');

It's not a nice business, and you'll probably want something like a cron job invoking a heartbeat script which polls an actual database event queue to do real asynchronous events.

link|improve this answer
1  
Similarly, I've also done the following: exec("curl $url > /dev/null &"); – Matt Huggins Sep 21 '09 at 18:50
1  
Question: is there a benefit of calling 'bash -c "wget"' rather than just 'wget'? – Matt Huggins Nov 9 '09 at 21:18
feedback

let me show you my way :)

needs nodejs installed on the server

(my server sends 1000 https get request takes only 2 seconds)

url.php :

<?
$urls = array_fill(0, 100, 'http://google.com/blank.html');

function execinbackground($cmd) { 
    if (substr(php_uname(), 0, 7) == "Windows"){ 
        pclose(popen("start /B ". $cmd, "r"));  
    } 
    else { 
        exec($cmd . " > /dev/null &");   
    } 
} 
fwite(fopen("urls.txt","w"),implode("\n",$urls);
execinbackground("nodejs urlscript.js urls.txt");
// { do your work while get requests being executed.. }
?>

urlscript.js >

var https = require('https');
var url = require('url');
var http = require('http');
var fs = require('fs');
var dosya = process.argv[2];
var logdosya = 'log.txt';
var count=0;
http.globalAgent.maxSockets = 300;
https.globalAgent.maxSockets = 300;

setTimeout(timeout,100000); // maximum execution time (in ms)

function trim(string) {
    return string.replace(/^\s*|\s*$/g, '')
}

fs.readFile(process.argv[2], 'utf8', function (err, data) {
    if (err) {
        throw err;
    }
    parcala(data);
});

function parcala(data) {
    var data = data.split("\n");
    count=''+data.length+'-'+data[1];
    data.forEach(function (d) {
        req(trim(d));
    });
    /*
    fs.unlink(dosya, function d() {
        console.log('<%s> file deleted', dosya);
    });
    */
}


function req(link) {
    var linkinfo = url.parse(link);
    if (linkinfo.protocol == 'https:') {
        var options = {
        host: linkinfo.host,
        port: 443,
        path: linkinfo.path,
        method: 'GET'
    };
https.get(options, function(res) {res.on('data', function(d) {});}).on('error', function(e) {console.error(e);});
    } else {
    var options = {
        host: linkinfo.host,
        port: 80,
        path: linkinfo.path,
        method: 'GET'
    };        
http.get(options, function(res) {res.on('data', function(d) {});}).on('error', function(e) {console.error(e);});
    }
}


process.on('exit', onExit);

function onExit() {
    log();
}

function timeout()
{
console.log("i am too far gone");process.exit();
}

function log() 
{
    var fd = fs.openSync(logdosya, 'a+');
    fs.writeSync(fd, dosya + '-'+count+'\n');
    fs.closeSync(fd);
}
link|improve this answer
feedback

I would recommend using a framework for that like PHPLiveX because it is alot more extensive than anything you will write, has very nice documentation and it's been tested a lot.

link|improve this answer
feedback

well, the timeout can be set in milliseconds, see CURLOPT_CONNECTTIMEOUT_MS in http://www.php.net/manual/en/function.curl-setopt...

link|improve this answer
feedback

It depends on how you want to call the asynchronous PHP script. If you are doing so from a web page, you could make an AJAX call using JQuery:

$.ajax({
    type: "POST",
    url:  "scriptToRunInBackground.php",
    data: {"NAME" : "John Doe"}
});

This will run the PHP script and ignore the response, leaving the user's current display unchanged. You can also add a function that will execute after the POST is completed successfully:

$.ajax({
    type: "POST",
    url:  "scriptToRunInBackground.php",
    data: {"NAME" : "John Doe"}
    success: function (requestedData) {
                ...
             }
});

Of course this will have to wait for a response, but the POST will be occurring asynchronously, so the user can do anything on your page as they are waiting for the response.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.