ID:               24101
 User updated by:  wzaccone at telcordia dot com
 Reported By:      wzaccone at telcordia dot com
-Status:           Feedback
+Status:           Open
 Bug Type:         Sockets related
 Operating System: Solaris 5.8 / Sparc
 PHP Version:      4.3.2
 New Comment:

function readMsgsFromHosts($sockets){
  
   set_time_limit(0);
   $numSockets = count($sockets);
   
   $keys = array_keys($sockets);
    
   $socketsCopy = Array();

    foreach ($keys as $key){
      $socketsCopy[$key] = $sockets[$key];
    }

    if (@socket_select($socketsCopy, $w = NULL, $e = NULL, $tv = NULL)
!== FALSE){

      foreach($socketsCopy as $sock){

          $string = fread($sock, $readAmount);


Previous Comments:
------------------------------------------------------------------------

[2003-06-09 23:40:31] [EMAIL PROTECTED]

Could you give a complete (but short, please) script
that shows this problem clearly..? (can't reproduce, but I'm propably
missing some part here..)


------------------------------------------------------------------------

[2003-06-09 14:02:38] wzaccone at telcordia dot com

we upgraded our application from php 4.1.2 to 4.3.2 and are testing.
and found the following code no longer works:

if (@socket_select($socketsCopy, $w = NULL, $e = NULL, $tv = NULL) !==
FALSE){

      foreach($socketsCopy as $sock){

The socket_select call appears to be never returning with php 4.3.2..
code worked correctly with 4.1.2.

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=24101&edit=1

Reply via email to