4 <?php include "_skipif.inc"; ?>
11 $c = new pq\Connection(PQ_DSN, true);
12 $s = array($c->status);
14 $w = array($c->socket);
16 stream_select($r, $w, $e, null);
21 case pq\Connection::POLLING_READING:
24 $r = array($c->socket);
25 stream_select($r, $w, $e, NULL);
27 case pq\Connection::POLLING_WRITING:
29 $w = array($c->socket);
31 stream_select($r, $w, $e, null);
33 case pq\Connection::POLLING_FAILED:
36 case pq\Connection::POLLING_OK:
42 printf("\n%s\n", implode(",", $s));