|
mysqli::pollmysqli_pollPoll connections DescriptionObject oriented style
public static int mysqli::poll
( array
&$read
, array &$error
, array &$reject
, int $sec
[, int $usec
] )Procedural style
int mysqli_poll
( array
&$read
, array &$error
, array &$reject
, int $sec
[, int $usec
] )Warning
This function is currently not documented; only its argument list is available. Poll connections. Available only with mysqlnd. The method can be used as static. Parameters
Return Values
Returns number of ready connections upon success, Examples
Example #1 A mysqli_poll example
<?php The above example will output: Array ( [0] => test ) See Also
|