Voting

: min(nine, four)?
(Example: nine)

The Note You're Voting On

crimson at NOSPAMtechnologist dot com
19 years ago
Note that the resulting arrays do NOT maintain keys (PHP 4.3.2) after being run through this function:

Before:
Array
(
[Client_Socket] => Resource id #6
[Server_Socket] => Resource id #9
)

After:
Array
(
[0] => Resource id #6
[1] => Resource id #9
)

It would have been nice to have the keys stay to figure out which stream you need to receive from, but you'll have to use some fancy foreach loop to figure out which sockets to check.

<< Back to user notes page

To Top