vote up 4 vote down star
4

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?

flag

5 Answers

vote up 6 vote down check

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|flag
Awesome, i'll try that! – UltimateBrent Sep 24 '08 at 7:23
vote up -1 vote down

Use XAJAX ... http://xajaxproject.org/

link|flag
XAJAX looks like it's for creating AJAX-based HTML forms, which doesn't relate to the question asked here. – Matt Huggins Sep 21 at 18:40
vote up 4 vote down

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|flag
Link times out for me, but thanks for trying! – UltimateBrent Sep 24 '08 at 7:26
vote up 2 vote down

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|flag
Similarly, I've also done the following: exec("curl $url > /dev/null &"); – Matt Huggins Sep 21 at 18:50
Question: is there a benefit of calling 'bash -c "wget"' rather than just 'wget'? – Matt Huggins Nov 9 at 21:18
vote up 0 vote down

I'm pretty sure all the standard libraries use blocking reads, so you're probably out of look. The MIO package (not part of the core, I believe) can handle this, but perhaps the most pragmatic solution will be to spawn off external processes that do the remote IO for you. Making this robust will be a pretty tricksy task, though.

link|flag

Your Answer

Get an OpenID
or

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