|
Session::listClientsGet client list Description
public array mysql_xdevapi\Session::listClients()
Get a list of client connections to the session's MySQL server. ParametersThis function has no parameters. Return ValuesAn array containing the currently logged clients. The array elements are "client_id", "user", "host", and "sql_session". ExamplesExample #1 mysql_xdevapi\Session::listClients example The above example will output something similar to:
array(1) {
[0]=>
array(4) {
["client_id"]=>
int(61)
["user"]=>
string(4) "root"
["host"]=>
string(9) "localhost"
["sql_session"]=>
int(72)
}
}
|