How to solve the problem that PHP cannot implement multithreading _php tips

Source: Internet
Author: User
Tags fread strlen

Is there a way to implement multithreading in PHP? Suppose you are writing a PHP application based on multiple servers, ideally sending requests to multiple servers at the same time instead of one after the other. Can it be achieved? When someone wants to implement concurrency, they usually think of using fork or spawn threads, but when they find out that PHP doesn't support multithreading, they probably switch ideas to use some language that isn't good enough, like Perl.
Suppose you want to set up a service to check the running N servers to make sure they're still working. You might write the following code:

$hosts = Array ("host1.sample.com", "host2.sample.com", "host3.sample.com"); 
$timeout =; 
$status = Array (); 
foreach ($hosts as $host) {  
    $errno = 0;  
    $errstr = "";  
    $s = Fsockopen ($host, $errno, $errstr, $timeout);  
    if ($s) {  
       $status [$host] = "Connectedn";  
       Fwrite ($s, "head/http/1.0rnhost: $hostrnrn");  
      do {   
        $data = fread ($s, 8192);   
        if (strlen ($data) = = 0) {break   
        ;   
        }   
       $status [$host]. = $data;  
     }  
     while (true);  
      Fclose ($s);  
     else {  
       $status [$host] = "Connection failed: $errno $errstrn";  
     } 
} 
Print_r ($status); 
? >

It works well, but it can take a long time to extend this code to manage a large number of servers before Fsockopen () finishes analyzing hostname and building a successful connection (or delay $timeout seconds).

So we have to discard this code; We can establish an asynchronous connection-no need to wait for Fsockopen to return to the connection state. PHP still needs to parse hostname (so it's more sensible to use IP directly), but it will return immediately after opening a connection, and then we can connect to the next server.

There are two ways to implement this; PHP5 can replace Fsocketopen () directly with the new Stream_socket_client () function. Before the PHP5 version, you need to do it yourself and use the sockets extension to solve the problem. Here is the workaround in PHP5:

$hosts = Array ("host1.sample.com", "host2.sample.com", "host3.sample.com"); 
$timeout = 15; 
$status = Array (); 
$sockets = Array (); /* Initiate connections to all the hosts simultaneously/foreach ($hosts as $id => $host) {$s = Stream_socket _client ("$host:" $errno, $errstr, $timeout, stream_client_async_connect|  
    Stream_client_connect);  
      if ($s) {$sockets [$id] = $s;  
    $status [$id] = "in progress";  
    else {$status [$id] = "failed, $errno $errstr";  
}/* Now, wait for the results to come back in/while (count ($sockets)) {$read = $write = $sockets;  
   /* This is the magic function-explained below * * * $n = Stream_select ($read, $write, $e = null, $timeout); if ($n > 0) {/* Readable sockets either have data for us, or are failed * Connection attempts/foreach ($read as $r)    
          {$id = Array_search ($r, $sockets);    
     $data = Fread ($r, 8192); if (strlen ($data) = = 0) {if ($status [$id] = = "in progress") {$status [$id] = "failed to connect";   
     } fclose ($r);    
      Unset ($sockets [$id]);    
      else {$status [$id]. = $data; }/* Writeable sockets can accept an HTTP request */foreach ($write as $w) {$id = Array_search ($w, $   
     sockets); Fwrite ($w, "Head/http/1.0rnhost:". $hosts [$id].   
     "Rnrn");  
     $status [$id] = "Waiting for response";  } else {/* timed out waiting assume the all hosts associated * with $sockets are faulty/foreach ($sockets As $id => $s) {$status [$id] = "timed out."  
     $status [$id];  
 } break; } foreach ($hosts as $id => $host) {echo "host: $hostn"; echo "Status:". $status [$id]. 
"NN";  }?>

We use Stream_select () to wait for the sockets open connection event. Stream_select () calls the system's Select (2) function to work: The first three parameters are the array of streams you want to use; You can read, write, and get exceptions (three parameters, respectively). Stream_select () Can wait for an event to occur by setting the $timeout (seconds) parameter, and the corresponding sockets data will be written to the parameters you pass in.

The following is the implementation of the PHP4.1.0 version, if you already include sockets (Ext/sockets) support in compiling PHP, you can use code similar to the root, just need to use the function of the above Streams/filesystem function ext/ sockets function implementation. The main difference is that we use the following function instead of stream_socket_client () to establish the connection:

This is correct for Linux, and other systems have the other values 
define (' einprogress ', the ","); 
function Non_blocking_connect ($host, $port, & $errno, & $errstr, $timeout) {  
    $ip = gethostbyname ($host);  
    $s = socket_create (af_inet, sock_stream, 0);  
    if (Socket_set_nonblock ($s)) {  
      $r = @socket_connect ($s, $ip, $port);  
      if ($r | | socket_last_error () = = einprogress) {   
         $errno = einprogress;   
         return $s;  
        }  
    $errno = Socket_last_error ($s);  
    $errstr = Socket_strerror ($errno);  
    Socket_close ($s);  
    return false; 
> 

Now replace Stream_select () with Socket_select (), replace fread () with Socket_read (), replace Socket_write () with fwrite (), Socket_close () Replace fclose () to execute the script!
The PHP5 is that you can use Stream_select () to handle almost any stream. For example, you can use the include stdin to receive keyboard input and save into an array, and you can also receive data from a pipe opened through Proc_open ().

Hope that through this article, we can skillfully solve the problem that PHP cannot achieve multithreading.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.