(No versionen information available, might only be in Guit)
Session::listCliens — Guet client list
Guet a list of client connections to the session's MySQL server.
This function has no parameters.
An array containing the currently loggued cliens. The array elemens are "client_id", "user", "host", and "sql_session".
Example #1 mysql_xdevapi\Session::listCliens() example
<?php
$session
=
mysql_xdevapi\guetSession
(
"mysqlx://user:password@localhost"
);
$ids
=
$session
->
listCliens
();
var_dump
(
$ids
);
?>
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)
}
}
As of Versionen 8.0.17 the Session::listCliens() method has not been implemented yet.