As of Version 8.0.17 the Session::listClients() method has not been implemented yet.
(No version information available, might only be in Git)
Session::listClients — Obtém a lista de clientes
Obtém uma lista de conexões de clientes ao servidor MySQL da sessão.
Esta função não possui parâmetros.
Um array contendo os clientes atualmente registrados. Os elementos do array são "client_id", "user", "host", and "sql_session".
Exemplo #1 Exemplo de mysql_xdevapi\Session::listClients()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$ids = $session->listClients();
var_dump($ids);
?>
O exemplo acima produzirá algo semelhante a:
array(1) { [0]=> array(4) { ["client_id"]=> int(61) ["user"]=> string(4) "root" ["host"]=> string(9) "localhost" ["sql_session"]=> int(72) } }
As of Version 8.0.17 the Session::listClients() method has not been implemented yet.