Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

ludvig dot ericson at gmail dot com
19 years ago
Regarding the comment below, No, it does not, it's a system call and I believe it's rather hard to preserve keys.

Additionally, socket_select should be used like it was a user-inputted array, that you don't know what you sent in to.

<?php
$reads
= $clients;
$reads[] = $server;

socket_select($reads);

foreach (
$reads as $read) {
/* do some stuff */
}
?>

<< Back to user notes page

To Top